File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {% extends "base.html" %}
2+ {# Copyright The IETF Trust 2015, All Rights Reserved #}
3+ {% load origin %}
4+ {% load staticfiles %}
5+ {% load bootstrap3 %}
6+ {% load ietf_filters %}
7+
8+ {% block title %}
9+ Status updates
10+ {% endblock %}
11+
12+ {% block content %}
13+ {% origin %}
14+ < h1 >
15+ Status updates
16+ </ h1 >
17+
18+ {% regroup wg_reports by group.parent as area_items %}
19+ {% for area_item in area_items %}
20+ < h2 > {{area_item.grouper.acronym|upper}}
21+ < small > {{area_item.grouper.name}}</ small > </ h2 >
22+ < table class ="table table-striped table-condensed ">
23+ {% for rpt in area_item.list %}
24+ < tr >
25+ < td > {{ rpt.group.acronym }}
26+ {% if rpt.group.state.slug != "active" %}
27+ < span class ="label label-success "> {{ rpt.group.state.slug|upper }}</ span >
28+ {% endif %}
29+ < br > {{rpt.time|date:"Y-m-d"}}</ td >
30+ < td > < pre class ="pasted "> {{ rpt.desc|default:"(none)"|escape|urlize }}</ pre > </ td >
31+ </ tr >
32+ {% endfor %}
33+ </ table >
34+ {% endfor %}
35+
36+ < h2 > IRTF < small > Internet Research Task Force</ small > </ h2 >
37+ < table class ="table table-striped table-condensed ">
38+ {% for rpt in rg_reports %}
39+ < tr >
40+ < td > {{ rpt.group.acronym }}
41+ {% if rpt.group.state.slug != "active" %}
42+ < span class ="label label-success "> {{ rpt.group.state.slug|upper }}</ span >
43+ {% endif %}
44+ < br > {{rpt.time|date:"Y-m-d"}}</ td >
45+ < td > < pre class ="pasted "> {{ rpt.desc|default:"(none)"|escape|urlize }}</ pre > </ td >
46+ </ tr >
47+ {% endfor %}
48+ </ table >
49+
50+ {% endblock %}
You can’t perform that action at this time.
0 commit comments