forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_list.html
More file actions
25 lines (18 loc) · 818 Bytes
/
admin_list.html
File metadata and controls
25 lines (18 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load ietf_filters %}
{% block title %}IPR Admin - {% for s in states %}{{ s.name }}{% if not forloop.last %}/{% endif %}{% endfor %} Disclosures{% endblock %}
{% block content %}
{% origin %}
<h1>IPR Admin - {% for s in states %}{{ s.name }}{% if not forloop.last %}/{% endif %}{% endfor %} Disclosures</h1>
<p class="buttonlist">
<a class="btn btn-default" href="{% url "ietf.ipr.views.showlist" %}">Back to IPR Disclosure Page</a>
</p>
<ul class="nav nav-tabs" role="tablist">
{% for name, link, selected in tabs %}
<li {% if selected %}class="active"{% endif %}><a href="{{ link }}">{{ name }}</a></li>
{% endfor %}
</ul>
{% include "ipr/ipr_table.html" %}
{% endblock %}