Don't show the "accepting proposals" message all the time.
authorDave Page <dpage@pgadmin.org>
Wed, 12 Jun 2024 08:11:03 +0000 (09:11 +0100)
committerDave Page <dpage@pgadmin.org>
Wed, 12 Jun 2024 08:11:03 +0000 (09:11 +0100)
templates/pages/call-for-papers.html

index ccd5dcee4dd4d9bdc4b7cde102faa419322eecf5..2d4325cdb0cf4c5a20722569e44122e542536454 100644 (file)
 
 <section class="header">
   <h2>Call for Papers</h2>
-  <h6>
-    We are now accepting proposals for {{ confname }} {{ year }}!
-  </h6>
+
+  {% if cfp.open and not cfp.closed %}
+    <h6>
+      We are now accepting proposals for {{ confname }} {{ year }}!
+    </h6>
+  {%endif%}
   <div class="container centred">
     {% if cfp.open and not cfp.closed %}
       <p>
 </section>
 {% endif %}
 {% endblock %}
-