fix: Don't show time or ical link for unscheduled sessions (#5063)
* fix: Don't show time for unscheduled sessions Fixes #5016 * Don't show the ical button either
This commit is contained in:
parent
98d7b15dfb
commit
2954044b36
|
@ -30,7 +30,7 @@
|
|||
{% if s.current_status == "sched" %}{{ s.time|date:"D" }}{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% if show_ical %}
|
||||
{% if show_ical and s.current_status == "sched" %}
|
||||
{% if s.meeting.type_id == 'ietf' %}
|
||||
{{ s.time|date:"H:i" }}
|
||||
<a class="btn btn-primary btn-sm"
|
||||
|
|
Loading…
Reference in a new issue