datatracker/ietf/templates/meeting/important-dates.html
Lars Eggert cf629a42ad And more fixes.
- Legacy-Id: 19877
2022-01-25 10:14:25 +00:00

88 lines
4.6 KiB
HTML

{# bs5ok #}
{% extends "base.html" %}
{# Copyright The IETF Trust 2017, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static textfilters %}
{% block title %}IETF {{ meetings.0.number }}: Important Dates{% endblock %}
{% block content %}
{% origin %}
<h1>Important Dates</h1>
<a class="btn btn-primary"
href="webcal://{{ request.get_host }}{% url 'ietf.meeting.views.important_dates' output_format='ics' %}">
Calendar subscription
</a>
<a class="btn btn-primary"
href="{% url 'ietf.meeting.views.important_dates' output_format='ics' %}">
Calendar download
</a>
{% for meeting in meetings %}
{% if meeting.show_important_dates %}
<h2 class="mt-5">
IETF {{ meeting.number }}
<br>
<small class="text-muted">{{ meeting.date }}, {{ meeting.city }}, {{ meeting.country }}</small>
</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Weekday</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% with first=forloop.first %}
{% for d in meeting.importantdate_set.all %}
<tr>
<th>{{ d.date }}</th>
<td>
{% if d.name.slug == 'openreg' %}
Week of
{% else %}
{{ d.date|date:'l' }}
{% endif %}
</td>
<td>
{{ d.name.desc|linkify }}
{% 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 %}
</td>
</tr>
{% endfor %}
{% endwith %}
</tbody>
</table>
{% endif %}
{% endfor %}
{% endblock %}