forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_status.html
More file actions
52 lines (46 loc) · 1.46 KB
/
all_status.html
File metadata and controls
52 lines (46 loc) · 1.46 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
49
50
51
52
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load bootstrap3 %}
{% load ietf_filters %}
{% load textfilters %}
{% block title %}
Status updates
{% endblock %}
{% block content %}
{% origin %}
<h1>
Status updates
</h1>
{% regroup wg_reports by group.parent as area_items %}
{% for area_item in area_items %}
<h2> {{area_item.grouper.acronym|upper}}
<small>{{area_item.grouper.name}}</small> </h2>
<table class="table table-striped table-condensed">
{% for rpt in area_item.list %}
<tr>
<td>{{ rpt.group.acronym }}
{% if rpt.group.state.slug != "active" %}
<span class="label label-success">{{ rpt.group.state.slug|upper }}</span>
{% endif %}
<br> {{rpt.time|date:"Y-m-d"}}</td>
<td><pre class="pasted">{{ rpt.desc|default:"(none)"|linkify }}</pre></td>
</tr>
{% endfor %}
</table>
{% endfor %}
<h2> IRTF <small>Internet Research Task Force</small> </h2>
<table class="table table-striped table-condensed">
{% for rpt in rg_reports %}
<tr>
<td>{{ rpt.group.acronym }}
{% if rpt.group.state.slug != "active" %}
<span class="label label-success">{{ rpt.group.state.slug|upper }}</span>
{% endif %}
<br> {{rpt.time|date:"Y-m-d"}}</td>
<td><pre class="pasted">{{ rpt.desc|default:"(none)"|linkify }}</pre></td>
</tr>
{% endfor %}
</table>
{% endblock %}