* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters static %}
|
|
{% block title %}
|
|
IPR Admin -
|
|
{% for s in states %}
|
|
{{ s.name }}
|
|
{% if not forloop.last %}/{% endif %}
|
|
{% endfor %}
|
|
Disclosures
|
|
{% endblock %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
IPR Admin
|
|
<br>
|
|
<small class="text-body-secondary">
|
|
{% for s in states %}
|
|
{{ s.name }}
|
|
{% if not forloop.last %}/{% endif %}
|
|
{% endfor %}
|
|
disclosures</small>
|
|
</h1>
|
|
<p class="buttonlist">
|
|
<a class="btn btn-primary" href="{% url "ietf.ipr.views.showlist" %}">Back to IPR Disclosure Page</a>
|
|
</p>
|
|
<ul class="nav nav-tabs">
|
|
{% for name, link, selected in tabs %}
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if selected %}active{% endif %}" href="{{ link }}">{{ name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% include "ipr/ipr_table.html" %}
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |