Conflicts: ietf/doc/templatetags/ietf_filters.py ietf/doc/views_charter.py ietf/templates/doc/charter/edit_notify.html ietf/templates/doc/charter/edit_telechat_date.html ietf/templates/doc/document_ballot_content.html ietf/templates/doc/document_history.html ietf/templates/doc/edit_notify.html ietf/templates/doc/edit_telechat_date.html ietf/templates/doc/notify.html ietf/templates/group/concluded_groups.html - Legacy-Id: 8429
61 lines
1.5 KiB
HTML
61 lines
1.5 KiB
HTML
{% 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="//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 "doc_view" name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
|
|
</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.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.ipr.status == 1 %}
|
|
<a href="/ipr/{{ ipr.ipr.ipr_id }}/">{{ ipr.ipr.title }}</a><br>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</dd>
|
|
{% endif %}
|
|
</dl>
|