datatracker/ietf/templates/doc/document_top.html

22 lines
982 B
HTML

{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% origin %}
{% load ietf_filters %}
<h1>
{{ doc.title|default:"(Untitled)" }}
<br>
<small class="text-body-secondary">{{ name }}{% if doc.part_of %}
{% for sub in doc.part_of %}{% if sub.contains|length_is:"1" %} also known as {% else %} part of {% endif %}<a href="{% url 'ietf.doc.views_doc.document_main' name=sub.name%}">{{sub.name|slice:":3"|upper}} {{sub.name|slice:"3:"}}</a>{% if not forloop.last %}, {%endif%}{% endfor %}
{% endif %}</small>
</h1>
<ul class="nav nav-tabs my-3">
{% for name, t, url, active, tooltip in tabs %}
<li {% if tooltip %}title="{{ tooltip }}"{% endif %} class="nav-item">
<a class="nav-link {% if t == selected %}active{% endif %}{% if not active %}disabled{% endif %}"
{% if active %}href="{{ url }}"{% endif %}>
{{ name|capfirst_allcaps }}
</a>
</li>
{% endfor %}
</ul>