Apply fixed width to decision column - refs BT#9463

1.10.x
Imanol Losada 10 years ago
parent f644c464c7
commit a78c556a7d
  1. 4
      plugin/advanced_subscription/views/admin_view.tpl
  2. 4
      plugin/advanced_subscription/views/css/style.css

@ -40,7 +40,7 @@
<th>{{ "InscriptionDate" | get_plugin_lang('AdvancedSubscriptionPlugin') }}</th>
<th>{{ "Area" | get_plugin_lang('AdvancedSubscriptionPlugin') }}</th>
<th>{{ "BossValidation" | get_plugin_lang('AdvancedSubscriptionPlugin') }}</th>
<th>{{ "Decision" | get_plugin_lang('AdvancedSubscriptionPlugin') }}</th>
<th id="decisionColumn">{{ "Decision" | get_plugin_lang('AdvancedSubscriptionPlugin') }}</th>
</tr>
{% set row_class = "row_odd" %}
{% for student in students %}
@ -62,6 +62,7 @@
{% endif %}
</td>
<td>
<a
class="btn btn-success btn-advanced-subscription btn-accept"
href="{{ student.acceptUrl }}"
@ -74,6 +75,7 @@
>
{{ 'RejectInfinitive' | get_plugin_lang('AdvancedSubscriptionPlugin') }}
</a>
</td>
</tr>
{% if row_class == "row_even" %}

@ -79,4 +79,8 @@
.legal-terms-title {
text-align: center;
}
#decisionColumn {
width: 148px;
}
Loading…
Cancel
Save