74 lines
2.1 KiB
HTML
74 lines
2.1 KiB
HTML
{# Copyright The IETF Trust 2016, All Rights Reserved #}{% load origin %}{% origin %}
|
|
{% load ietf_filters ballot_icon %}
|
|
|
|
<div class="pull-right">{% ballot_icon doc %}</div>
|
|
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
{% if doc.stream %}
|
|
{{ doc.stream }} stream
|
|
{% endif %}
|
|
</dt>
|
|
|
|
<dd class="no-table">
|
|
{% with doc.rfc_number as rfc_number %}
|
|
{% if rfc_number %}
|
|
<a href="https://www.rfc-editor.org/rfc/rfc{{rfc_number}}/">
|
|
{% else %}
|
|
<a href="{{doc.href}}">
|
|
{% endif %}
|
|
<span class="fa fa-file"></span></a>
|
|
{% endwith %}
|
|
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
|
|
{% if doc.has_rfc_editor_note %}
|
|
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}writeup/"> <em>(Has RFC Editor Note)</em></a>
|
|
{% endif %}
|
|
</dd>
|
|
|
|
<dt>{{ doc.intended_std_level }}</dt><dd><b>{{ doc.title }}</b></dd>
|
|
|
|
{% if doc.note %}
|
|
<dt>Note</dt><dd>{{ doc.note|linebreaksbr }}</dd>
|
|
{% endif %}
|
|
|
|
<dt>Token</dt><dd>{{ doc.ad }} ({{ doc.area_acronym|upper }} area)</dd>
|
|
|
|
{% with doc.active_defer_event as defer %}
|
|
{% if defer %}
|
|
<dt>Deferred by</dt><dd>{{ defer.by }} on {{ defer.time|date:"Y-m-d" }}</dd>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% if doc.iana_review_state %}
|
|
<dt>IANA review</dt><dd>{{ doc.iana_review_state }}<dd>
|
|
{% endif %}
|
|
|
|
{% if doc.consensus %}
|
|
<dt>Consensus</dt><dd>{{ doc.consensus }}</dd>
|
|
{% endif %}
|
|
|
|
{% if doc.review_assignments %}
|
|
<dt>Reviews</dt>
|
|
<dd>
|
|
{% for review_assignment in doc.review_assignments %}
|
|
{% include "doc/review_assignment_summary.html" with current_doc_name=doc.name current_rev=doc.rev %}
|
|
{% endfor %}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
{% if doc.lastcall_expires %}
|
|
<dt>Last call expires</dt><dd>{{ doc.lastcall_expires|date:"Y-m-d" }}</dd>
|
|
{% endif %}
|
|
|
|
{% if doc.ipr %}
|
|
<dt>IPR</dt>
|
|
<dd>
|
|
{% for ipr in doc.ipr %}
|
|
{% if ipr.disclosure.state_id == "posted" %}
|
|
<a href="/ipr/{{ ipr.disclosure.id }}/">{{ ipr.disclosure.title }}</a><br>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</dd>
|
|
{% endif %}
|
|
</dl>
|