Skip to content

Commit 624ee27

Browse files
committed
Merged in [17033] from kivinen@iki.fi:
Reviewers page template changes. Changed draft names so they never wrap. Changed the Unavailability period table so it is much narrower. - Legacy-Id: 17043 Note: SVN reference [17033] has been migrated to Git commit 996fcf8
2 parents d2ceafb + 996fcf8 commit 624ee27

2 files changed

Lines changed: 15 additions & 12 deletions

File tree

ietf/templates/group/reviewer_overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h2>Reviewers</h2>
3535
<th>Next</th>
3636
<th>Reviewer</th>
3737
<th>Assigned/Deadline/state/time between assignment and closure for latest assignments</th>
38-
<th>Days Since Completed</th>
38+
<th>Days Since Com&shy;plet&shy;ed</th>
3939
<th>Settings</th>
4040
</tr>
4141
</thead>
@@ -59,7 +59,7 @@ <h2>Reviewers</h2>
5959
<td>
6060
{% if assignment_to_closure_days != None %}{{ assignment_to_closure_days }}&nbsp;day{{ assignment_to_closure_days|pluralize }}{% endif %}
6161
</td>
62-
<td>{{ doc_name }}{% if reviewed_rev %}-{{ reviewed_rev }}{% endif %}</td>
62+
<td class="text-nowrap">{{ doc_name }}{% if reviewed_rev %}-{{ reviewed_rev }}{% endif %}</td>
6363
</tr>
6464
{% endfor %}
6565
</table>
Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
<table class="simple-table">
2-
<tr>
3-
<th>Dates</th>
4-
<th>Availability</th>
5-
<th>Reason</th>
6-
</tr>
72
{% for p in unavailable_periods %}
8-
<tr class="unavailable-period-{{ p.state }}">
9-
<td> {% if p.start_date or p.end_date %}{{ p.start_date|default:"&infin;" }} -{% endif %} {{ p.end_date|default:"&infin;" }}</td>
10-
<td>{{ p.get_availability_display }}</td>
11-
<td>{{ p.reason }}</td>
12-
</tr>
3+
<tr class="unavailable-period-{{ p.state }}">
4+
<th>Dates:</th>
5+
<td> {% if p.start_date or p.end_date %}{{ p.start_date|default:"&infin;" }} -{% endif %} {{ p.end_date|default:"&infin;" }}</td>
6+
</tr>
7+
<tr class="unavailable-period-{{ p.state }}">
8+
<th>Availability:</th>
9+
<td>{{ p.get_availability_display }}</td>
10+
</tr>
11+
<tr class="unavailable-period-{{ p.state }}">
12+
<th>Reason:</th>
13+
<td>{{ p.reason }}</td>
14+
</tr>
15+
<tr><td>&nbsp;</td></td></td></tr>
1316
{% endfor %}
1417
</table>

0 commit comments

Comments
 (0)