Skip to content

Commit

Permalink
fix: Retain date of cancelled virtual interim meeting (#6708) (#6852)
Browse files Browse the repository at this point in the history
  • Loading branch information
pselkirk committed Dec 27, 2023
1 parent 2c11b54 commit 1450ecd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ietf/templates/group/meetings-row.html
Expand Up @@ -16,6 +16,11 @@
{% endwith %}
{% else %}
<div class="badge rounded-pill text-bg-secondary">{{ s.current_status_name }}</div>
{% if s.current_status == "canceled" %}
{% with timeslot=s.official_timeslotassignment.timeslot %}
<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>
{% endwith %}
{% endif %}
{% endif %}
{% if show_request and s.meeting.type_id == 'ietf' %}
{% if can_edit %}
Expand Down

0 comments on commit 1450ecd

Please sign in to comment.