diff --git a/ietf/templates/meeting/important-dates.html b/ietf/templates/meeting/important-dates.html
index 424643376..0d092790c 100644
--- a/ietf/templates/meeting/important-dates.html
+++ b/ietf/templates/meeting/important-dates.html
@@ -12,30 +12,35 @@
{% for meeting in meetings %}
IETF {{meeting.number}} : {{ meeting.date}}, {{meeting.city}}, {{meeting.country}}
- {% for d in meeting.importantdate_set.all %}
- - {{d.date}} ({% if d.name.slug == 'openreg' %}Week of{% else %}{{d.date|date:'l'}}{% endif %}): {{d.name.desc}}.
- {% if d.name.slug == 'opensched' %}
- To request a Working Group session, use the
- IETF Meeting Session Request Tool.
- If you are working on a BoF request, it is highly recommended
- to tell the IESG now by sending an email to
- iesg@ietf.org to get advance help with the request.
- {% endif %}
- {% if d.name.slug == 'cutoffwgreq' %}
- To request a Working Group session, use the
- IETF Meeting Session Request Tool.
- {% endif %}
- {% if d.name.slug == 'cutoffbofreq' %}
- To request a BOF, please see instructions on Requesting a BOF.
- {% endif %}
- {% if d.name.slug == 'idcutoff' %}
- Upload using the ID Submission Tool.
- {% endif %}
- {% if d.name.slug == 'draftwgagenda' or d.name.slug == 'revwgagenda' or d.name.slug == 'procsub' or d.name.slug == 'revslug' %}
- Upload using the Meeting Materials Management Tool.
- {% endif %}
-
- {% endfor %}
+ {% with first=forloop.first %}
+ {% for d in meeting.importantdate_set.all %}
+ - {{d.date}} ({% if d.name.slug == 'openreg' %}Week of{% else %}{{d.date|date:'l'}}{% endif %}): {{d.name.desc}}.
+ {% if first and d.name.slug == 'openreg' or first and d.name.slug == 'earlybird' %}
+ Register here.
+ {% endif %}
+ {% if d.name.slug == 'opensched' %}
+ To request a Working Group session, use the
+ IETF Meeting Session Request Tool.
+ If you are working on a BoF request, it is highly recommended
+ to tell the IESG now by sending an email to
+ iesg@ietf.org to get advance help with the request.
+ {% endif %}
+ {% if d.name.slug == 'cutoffwgreq' %}
+ To request a Working Group session, use the
+ IETF Meeting Session Request Tool.
+ {% endif %}
+ {% if d.name.slug == 'cutoffbofreq' %}
+ To request a BOF, please see instructions on Requesting a BOF.
+ {% endif %}
+ {% if d.name.slug == 'idcutoff' %}
+ Upload using the ID Submission Tool.
+ {% endif %}
+ {% if d.name.slug == 'draftwgagenda' or d.name.slug == 'revwgagenda' or d.name.slug == 'procsub' or d.name.slug == 'revslug' %}
+ Upload using the Meeting Materials Management Tool.
+ {% endif %}
+
+ {% endfor %}
+ {% endwith %}
{% endfor %}
{% endblock %}