diff --git a/ietf/templates/group/all_status.html b/ietf/templates/group/all_status.html new file mode 100644 index 000000000..31d93b9c8 --- /dev/null +++ b/ietf/templates/group/all_status.html @@ -0,0 +1,50 @@ +{% extends "base.html" %} +{# Copyright The IETF Trust 2015, All Rights Reserved #} +{% load origin %} +{% load staticfiles %} +{% load bootstrap3 %} +{% load ietf_filters %} + +{% block title %} + Status updates +{% endblock %} + +{% block content %} + {% origin %} +

+ Status updates +

+ +{% regroup wg_reports by group.parent as area_items %} +{% for area_item in area_items %} +

{{area_item.grouper.acronym|upper}} +{{area_item.grouper.name}}

+ + {% for rpt in area_item.list %} + + + + + {% endfor %} +
{{ rpt.group.acronym }} + {% if rpt.group.state.slug != "active" %} + {{ rpt.group.state.slug|upper }} + {% endif %} +
{{rpt.time|date:"Y-m-d"}}
{{ rpt.desc|default:"(none)"|escape|urlize }}
+{% endfor %} + +

IRTF Internet Research Task Force

+ +{% for rpt in rg_reports %} + + + + +{% endfor %} +
{{ rpt.group.acronym }} + {% if rpt.group.state.slug != "active" %} + {{ rpt.group.state.slug|upper }} + {% endif %} +
{{rpt.time|date:"Y-m-d"}}
{{ rpt.desc|default:"(none)"|escape|urlize }}
+ +{% endblock %}