datatracker/ietf/templates/review/unavailable_table.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

23 lines
827 B
HTML

<table class="mt-2 mb-0 table table-sm table-borderless">
{% for p in unavailable_periods %}
<tr class="unavailable-period-{{ p.state }}">
<th>Period:</th>
<td>{{ p.state }}</td>
</tr>
<tr class="unavailable-period-{{ p.state }}">
<th>Dates:</th>
<td>
{% if p.start_date or p.end_date %}{{ p.start_date|default:"&infin;" }} -{% endif %}
{{ p.end_date|default:"&infin;" }}
</td>
</tr>
<tr class="unavailable-period-{{ p.state }}">
<th>Availability:</th>
<td>{{ p.get_availability_display }}</td>
</tr>
<tr class="unavailable-period-{{ p.state }}">
<th>Reason:</th>
<td>{{ p.reason }}</td>
</tr>
{% endfor %}
</table>