forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscrepancies.html
More file actions
48 lines (41 loc) · 1.28 KB
/
discrepancies.html
File metadata and controls
48 lines (41 loc) · 1.28 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
43
44
45
46
47
48
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
{% endblock %}
{% block title %}Sync discrepancies{% endblock %}
{% block content %}
{% origin %}
<h1>Sync discrepancies</h1>
{% for title, docs in sections %}
<h2>{{ title }}</h2>
{% if docs %}
<table class="table table-condensed table-striped tablesorter">
<thead>
<tr>
<th>Draft name</th>
<th>IESG state</th>
<th>RFC Editor state</th>
<th>IANA Action state</th>
</tr>
</thead>
<tbody>
{% for d in docs %}
<tr>
<td><a href="{{ d.get_absolute_url }}">{{ d.name }}</a></td>
<td>{{ d.iesg_state|default:"" }}</td>
<td>{{ d.rfc_state|default:"" }}</td>
<td>{{ d.iana_action_state|default:"" }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p class="text-muted">(None)</p>
{% endif %}
{% endfor %}
{% endblock %}
{% block js %}
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
{% endblock %}