Skip to content

Commit c41e5b5

Browse files
committed
Added padding to the <th> column in the unavailability period list of
the reviewers page. Commit ready for merge. - Legacy-Id: 17037
1 parent b5d8644 commit c41e5b5

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
<table class="simple-table">
22
{% for p in unavailable_periods %}
33
<tr class="unavailable-period-{{ p.state }}">
4-
<th>Dates:</th>
4+
<th class="padded-right">Dates:</th>
55
<td> {% if p.start_date or p.end_date %}{{ p.start_date|default:"&infin;" }} -{% endif %} {{ p.end_date|default:"&infin;" }}</td>
66
</tr>
77
<tr class="unavailable-period-{{ p.state }}">
8-
<th>Availability:</th>
8+
<th class="padded-right">Availability:</th>
99
<td>{{ p.get_availability_display }}</td>
1010
</tr>
1111
<tr class="unavailable-period-{{ p.state }}">
12-
<th>Reason:</th>
12+
<th class="padded-right">Reason:</th>
1313
<td>{{ p.reason }}</td>
1414
</tr>
1515
<tr><td>&nbsp;</td></td></td></tr>
1616
{% endfor %}
1717
</table>
18+

0 commit comments

Comments
 (0)