RFCartography/rfcartography/templates/details.html
2023-01-03 14:42:54 +01:00

40 lines
613 B
HTML

{% extends "base.html" %}
{%- block head_title %}
{{ doc.docID() }} :: RFCartography
{% endblock head_title %}
{%- block main %}
<h1>
{{ doc.docID() }}
</h1>
<dl>
{% if doc.title != "" %}
<dt>
Title
</dt>
<dd>
{{ doc.title }}
</dd>
{% endif %}
{% for ref in doc.is_also %}
{% if loop.first %}
<dt>
a.k.a.
</dt>
<dd>
{% endif %}
<a href="{{ url }}{{ ref.docID() }}">
{{ ref.docID() }}
</a>{% if not loop.last %},
{% else %}
</dd>
{% endif %}
{% endfor %}
</dl>
<br />
<a href="https://www.rfc-editor.org/info/{{ doc.docID() | lower }}">
RFC-Editor
</a>
{% endblock main %}