12 lines
515 B
HTML
12 lines
515 B
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}{% load origin %}{% origin %}
|
|
{% load ietf_filters %}
|
|
<h1>{{ doc.title }}<br><small>{{ name }}</small></h1>
|
|
|
|
<ul class="nav nav-tabs" role="tablist">
|
|
{% for name, t, url, active, tooltip in tabs %}
|
|
<li {% if tooltip %}title="{{tooltip}}"{% endif %} class="{% if t == selected %}active {% endif %}{% if not active %}disabled {% endif %}">
|
|
<a {% if active %}href="{{ url }}"{% endif %}>{{ name|capfirst_allcaps }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|