54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block pagehead %}
|
|
{% if last_call_only %}
|
|
<link rel="alternate" type="application/atom+xml" href="/feed/last-call/">
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ title }}</h1>
|
|
|
|
<table class="table table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-nowrap">Area</th>
|
|
<th class="text-nowrap">{% if state.slug == "lc" %}Expires at{% else %}Date{% endif %}</th>
|
|
<th>Document</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for state, docs in grouped_docs %}
|
|
<tr class="info"><th colspan="3">{{ state.name }}</th></tr>
|
|
|
|
{% for doc in docs %}
|
|
<tr>
|
|
<td class="text-nowrap">{% if doc.area_acronym %}{{ doc.area_acronym }}{% endif %}</td>
|
|
<td class="text-nowrap">
|
|
{% if state.slug == "lc" %}
|
|
{% if doc.lc_expires %}{{ doc.lc_expires|date:"Y-m-d" }}{% endif %}
|
|
{% else %}
|
|
{{ doc.time|date:"Y-m-d" }}
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td>
|
|
<b>{{ doc.title }}</b> ({{ doc.intended_std_level.name }})
|
|
<br><a href="{% url "doc_view" doc.name %}">{{ doc.name }}</a>
|
|
<br>AD: <a href="mailto:{{ doc.ad.email_address|urlencode }}">{{ doc.ad.plain_name }}</a>
|
|
{% if doc.note %}
|
|
<br><i>Note: {{ doc.note|linebreaksbr|urlize }}</i>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|