Skip to content

Commit

Permalink
fix: Don't show time or ical link for unscheduled sessions (ietf-tool…
Browse files Browse the repository at this point in the history
…s#5063)

* fix: Don't show time for unscheduled sessions

Fixes ietf-tools#5016

* Don't show the ical button either
  • Loading branch information
larseggert authored and kesara committed Feb 7, 2023
1 parent 117bb2a commit f4ddbfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/templates/group/meetings-row.html
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit f4ddbfa

Please sign in to comment.