We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d8644 commit c41e5b5Copy full SHA for c41e5b5
1 file changed
ietf/templates/review/unavailable_table.html
@@ -1,17 +1,18 @@
1
<table class="simple-table">
2
{% for p in unavailable_periods %}
3
<tr class="unavailable-period-{{ p.state }}">
4
- <th>Dates:</th>
+ <th class="padded-right">Dates:</th>
5
<td> {% if p.start_date or p.end_date %}{{ p.start_date|default:"∞" }} -{% endif %} {{ p.end_date|default:"∞" }}</td>
6
</tr>
7
8
- <th>Availability:</th>
+ <th class="padded-right">Availability:</th>
9
<td>{{ p.get_availability_display }}</td>
10
11
12
- <th>Reason:</th>
+ <th class="padded-right">Reason:</th>
13
<td>{{ p.reason }}</td>
14
15
<tr><td> </td></td></td></tr>
16
{% endfor %}
17
</table>
18
+
0 commit comments