Skip to content

Commit 4450ff1

Browse files
committed
Improve the looks of the previous commit by using an infinity sign in
case of a missing start or end date - Legacy-Id: 12162
1 parent 399bb3b commit 4450ff1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/templates/review/unavailable_table.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<table class="simple-table">
22
{% for p in unavailable_periods %}
33
<tr class="unavailable-period-{{ p.state }}">
4-
<td>{{ p.start_date|default:"" }} - {{ p.end_date|default:"" }}</td>
4+
<td> {% if p.start_date or p.end_date %}{{ p.start_date|default:"&infin;" }} -{% endif %} {{ p.end_date|default:"&infin;" }}</td>
55
<td>{{ p.get_availability_display }}</td>
66
</tr>
77
{% endfor %}

0 commit comments

Comments
 (0)