* Update vnu.jar * Fix py2 -> py3 issue * Run pyupgrade * test: Add default-jdk to images * test: Add option to also validate HTML with vnu.jar Since it's already installed in bin. Don't do this by default, since it increases the time needed for tests by ~50%. * fix: Stop the urlizer from urlizing in linkified mailto: text * More HTML fixes * More HTML validation fixes * And more HTML fixes * Fix floating badge * Ignore unicode errors * Only URLize docs that are existing * Final fixes * Don't URLize everything during test-crawl * Feed HTML into vnu using python rather than Java to speed things up * Allow test-crawl to start vnu on a different port * Increase retry count to vnu. Restore batch size to 30. * More HTML validation fixes * Use urllib3 to make requests to vnu, since overriding requests_mock is tricky * Undo commit of unmodified file * Also urlize ftp links * Fix matching of file name * More HTML fixes * Add `is_valid_url` filter * weekday -> data-weekday * urlencode URLs * Add and use vnu_fmt_message. Bump vnu max buffer. * Simplify doc_exists * Don't add tab link to mail archive if the URL is invalid * Run urlize_ietf_docs before linkify Reduces the possibility of generating incorrect HTML * Undo superfluous change * Runner fixes * Consolidate vnu message filtering into vnu_filter_message * Correctly handle multiple persons with same name * Minimze diff * Fix HTML nits * Print source snippet in vnu_fmt_message * Only escape if there is something to escape * Fix snippet * Skip crufty old IPR declarations * Only include modal when needed. Add handles. * Fix wordwrap+linkification * Update ietf/doc/templatetags/ietf_filters.py * Update ietf/doc/templatetags/tests_ietf_filters.py * Don't right-align second column
81 lines
4.4 KiB
HTML
81 lines
4.4 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2017, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters static textfilters ietf_filters %}
|
|
{% 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 scope="col">Date</th>
|
|
<th scope="col">Weekday</th>
|
|
<th scope="col">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% with first=forloop.first %}
|
|
{% for d in meeting.importantdate_set.all %}
|
|
<tr>
|
|
<th scope="row">{{ d.date }}</th>
|
|
<td>
|
|
{% if d.name.slug == 'openreg' %}
|
|
Week of
|
|
{% else %}
|
|
{{ d.date|date:'l' }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{{ d.name.desc|urlize_ietf_docs|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 %} |