datatracker/ietf/templates/ipr/admin_list.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

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-muted">
{% 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 %}