datatracker/ietf/templates/meeting/important-dates.html
2017-07-21 11:00:00 +00:00

35 lines
1.5 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2017, All Rights Reserved #}
{% load origin %}
{% load ietf_filters staticfiles %}
{% block title %}IETF {{meetings.0.number}} : Important Dates{% endblock %}
{% block content %}
{% origin %}
<h2>Important Dates</h2>
{% 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' or 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/iesg/bof-procedures.html">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 %}
</ul>
{% endfor %}
{% endblock %}