Skip to content

Commit 4196612

Browse files
committed
Fix multiple issues with secretariat non-session view, including indicator of cancelled sessions. Fixes ietf-tools#2701. Commit ready for merge.
- Legacy-Id: 16088
1 parent 2842ad1 commit 4196612

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/templates/meetings/non_session.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2>TimeSlots</h2>
2424
</thead>
2525
<tbody>
2626
{% for assignment in assignments %}
27-
<tr class="{% cycle row1 row2 %}{% ifchanged item.type %} break{% endifchanged %}{% if item.session.status.slug == "canceled" %} cancelled{% endif %}">
27+
<tr class="{% cycle 'row1' 'row2' %}{% ifchanged assignment.session.type %} break{% endifchanged %}{% if assignment.session.status.slug == "canceled" %} cancelled{% endif %}">
2828
<td>{{ assignment.timeslot.time|date:"D" }}</td>
2929
<td>{{ assignment.timeslot.time|date:"H:i" }}-{{ assignment.timeslot.end_time|date:"H:i" }}</td>
3030
<td>{{ assignment.timeslot.name }}</td>

0 commit comments

Comments
 (0)