22 lines
887 B
HTML
22 lines
887 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% block title %}IETF {{ meeting_num }} Preliminary & Interim Materials{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>IETF {{ meeting_num }} Preliminary & Interim Materials</h1>
|
|
<p>
|
|
Submission began {{ begin_date|date:"F j, Y" }}
|
|
<br>
|
|
Submission cutoff date: {{ cut_off_date|date:"F j, Y" }}
|
|
<br>
|
|
Corrections to submissions cutoff date: {{ cor_cut_off_date|date:"F j, Y" }}
|
|
</p>
|
|
<p>
|
|
The IETF {{ meeting_num }} Preliminary & Interim Materials page is now closed.
|
|
</p>
|
|
<p>
|
|
You should be able to access the final version of IETF {{ meeting_num }} Proceedings via the
|
|
<a href="https://www.ietf.org/meeting/proceedings.html">IETF Online Proceedings page</a>.
|
|
</p>
|
|
{% endblock %} |