From 107a5d3c688f0a4e1c379e24f3c3fdd6eec83110 Mon Sep 17 00:00:00 2001
From: Henrik Levkowetz
Date: Wed, 7 Oct 2020 20:07:54 +0000
Subject: [PATCH] Made the important-dates page honour the
Meeting.show_important_dates setting. - Legacy-Id: 18565
---
ietf/templates/meeting/important-dates.html | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ietf/templates/meeting/important-dates.html b/ietf/templates/meeting/important-dates.html
index 7b0b8f791..95b75dc0a 100644
--- a/ietf/templates/meeting/important-dates.html
+++ b/ietf/templates/meeting/important-dates.html
@@ -15,6 +15,7 @@
{% for meeting in meetings %}
+ {% if meeting.show_important_dates %}
IETF {{meeting.number}}: {{ meeting.date}}, {{meeting.city}}, {{meeting.country}}
{% with first=forloop.first %}
@@ -47,6 +48,7 @@
{% endfor %}
{% endwith %}
+ {% endif %}
{% endfor %}
{% endblock %}