fix: Retain date of cancelled virtual interim meeting (#6708) (#6852)

This commit is contained in:
Paul Selkirk 2023-12-27 11:39:13 -05:00 committed by GitHub
parent 2c11b544f1
commit 1450ecde99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 %}