datatracker/ietf/templates/meeting/important-dates.html
Robert Sparks 805d1f4a7e Use BOF consistently.
- Legacy-Id: 19212
2021-07-14 17:33:14 +00:00

55 lines
2.4 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2017, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static %}
{% block title %}IETF {{meetings.0.number}}: Important Dates{% endblock %}
{% block content %}
{% origin %}
<h1>Important Dates</h1>
<p>iCalendar: <a href="webcal://{{request.get_host}}{% url 'ietf.meeting.views.important_dates' output_format='ics' %}">webcal subscription</a>
&middot; <a href="{% url 'ietf.meeting.views.important_dates' output_format='ics' %}">download</a>
</p>
{% for meeting in meetings %}
{% if meeting.show_important_dates %}
<h3>IETF {{meeting.number}}: {{ meeting.date}}, {{meeting.city}}, {{meeting.country}}</h3>
<ul>
{% 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>
{% endif %}
{% endfor %}
{% endblock %}