Made the important-dates page honour the Meeting.show_important_dates setting.

- Legacy-Id: 18565
This commit is contained in:
Henrik Levkowetz 2020-10-07 20:07:54 +00:00
parent 6d36990446
commit 107a5d3c68

View file

@ -15,6 +15,7 @@
</p>
{% for meeting in meetings %}
{% if meeting.show_important_dates %}
<h3>IETF {{meeting.number}}: {{ meeting.date}}, {{meeting.city}}, {{meeting.country}}</h3>
<ul>
{% with first=forloop.first %}
@ -47,6 +48,7 @@
{% endfor %}
{% endwith %}
</ul>
{% endif %}
{% endfor %}
{% endblock %}