Added a link to the registration page from the meeting 'Important Dates' page.
- Legacy-Id: 16213
This commit is contained in:
parent
8e6eb3068a
commit
6f0d17fd00
|
@ -12,30 +12,35 @@
|
|||
{% for meeting in meetings %}
|
||||
<h3>IETF {{meeting.number}} : {{ meeting.date}}, {{meeting.city}}, {{meeting.country}}</h3>
|
||||
<ul>
|
||||
{% for d in meeting.importantdate_set.all %}
|
||||
<li> <strong>{{d.date}} ({% if d.name.slug == 'openreg' %}Week of{% else %}{{d.date|date:'l'}}{% endif %}):</strong> {{d.name.desc}}.
|
||||
{% if d.name.slug == 'opensched' %}
|
||||
To request a Working Group session, use the
|
||||
<a href="{% url 'ietf.secr.sreq.views.main' %}">IETF Meeting Session Request Tool</a>.
|
||||
If you are working on a BoF request, it is highly recommended
|
||||
to tell the IESG now by sending an email to
|
||||
<a href="mailto:iesg@ietf.org">iesg@ietf.org</a> to get advance help with the request.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'cutoffwgreq' %}
|
||||
To request a Working Group session, use the
|
||||
<a href="{% url 'ietf.secr.sreq.views.main' %}">IETF Meeting Session Request Tool</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'cutoffbofreq' %}
|
||||
To request a BOF, please see instructions on <a href="https://www.ietf.org/how/bofs/bof-procedures/">Requesting a BOF</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'idcutoff' %}
|
||||
Upload using the <a href="{% url 'ietf.submit.views.upload_submission' %}">ID Submission Tool</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'draftwgagenda' or d.name.slug == 'revwgagenda' or d.name.slug == 'procsub' or d.name.slug == 'revslug' %}
|
||||
Upload using the <a href="{% url 'ietf.meeting.views.materials' num=meeting.number %}">Meeting Materials Management Tool</a>.
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% with first=forloop.first %}
|
||||
{% for d in meeting.importantdate_set.all %}
|
||||
<li> <strong>{{d.date}} ({% if d.name.slug == 'openreg' %}Week of{% else %}{{d.date|date:'l'}}{% endif %}):</strong> {{d.name.desc}}.
|
||||
{% if first and d.name.slug == 'openreg' or first and d.name.slug == 'earlybird' %}
|
||||
<a href="https://www.ietf.org/how/meetings/register/">Register here</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'opensched' %}
|
||||
To request a Working Group session, use the
|
||||
<a href="{% url 'ietf.secr.sreq.views.main' %}">IETF Meeting Session Request Tool</a>.
|
||||
If you are working on a BoF request, it is highly recommended
|
||||
to tell the IESG now by sending an email to
|
||||
<a href="mailto:iesg@ietf.org">iesg@ietf.org</a> to get advance help with the request.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'cutoffwgreq' %}
|
||||
To request a Working Group session, use the
|
||||
<a href="{% url 'ietf.secr.sreq.views.main' %}">IETF Meeting Session Request Tool</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'cutoffbofreq' %}
|
||||
To request a BOF, please see instructions on <a href="https://www.ietf.org/how/bofs/bof-procedures/">Requesting a BOF</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'idcutoff' %}
|
||||
Upload using the <a href="{% url 'ietf.submit.views.upload_submission' %}">ID Submission Tool</a>.
|
||||
{% endif %}
|
||||
{% if d.name.slug == 'draftwgagenda' or d.name.slug == 'revwgagenda' or d.name.slug == 'procsub' or d.name.slug == 'revslug' %}
|
||||
Upload using the <a href="{% url 'ietf.meeting.views.materials' num=meeting.number %}">Meeting Materials Management Tool</a>.
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% endwith %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue