forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_list.html
More file actions
42 lines (42 loc) · 1.23 KB
/
admin_list.html
File metadata and controls
42 lines (42 loc) · 1.23 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% 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 %}