Skip to content

Commit 25fd4fc

Browse files
authored
fix: show correct time for cancelled sessions. (ietf-tools#7958)
1 parent 32057f3 commit 25fd4fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/templates/group/meetings-row.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div class="badge rounded-pill text-bg-secondary">{{ s.current_status_name }}</div>
1919
{% if s.current_status == "canceled" %}
2020
{% with timeslot=s.official_timeslotassignment.timeslot %}
21-
<span class="text-decoration-line-through text-secondary session-time date me-3" data-start-utc="{{ timeslot.time|utc|date:'Y-m-d' }}" data-end-utc="{{ timeslot.end_time|utc|date:'Y-m-d' }}"></span>
21+
<span class="text-decoration-line-through text-secondary session-time date me-3" data-start-utc="{{ timeslot.time|utc|date:'Y-m-d H:i' }}" data-end-utc="{{ timeslot.end_time|utc|date:'Y-m-d H:i' }}"></span>
2222
{% endwith %}
2323
{% endif %}
2424
{% endif %}

0 commit comments

Comments
 (0)