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
45 lines (45 loc) · 1.75 KB
/
all_status.html
File metadata and controls
45 lines (45 loc) · 1.75 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load django_bootstrap5 %}
{% 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 class="mt-3">{{ area_item.grouper.name }} ({{ area_item.grouper.acronym|upper }})</h2>
{% for rpt in area_item.list %}
<div class="card my-3">
<div class="card-header">
{{ rpt.group.acronym }}
{% if rpt.group.state.slug != "active" %}
<span class="badge bg-success">{{ rpt.group.state.slug|upper }}</span>
{% endif %}
{{ rpt.time|date:"Y-m-d" }}
</div>
<div class="card-body">
<pre class="pasted">{{ rpt.desc|default:"(none)"|linkify|urlize_ietf_docs }}</pre>
</div>
</div>
{% endfor %}
{% endfor %}
<h2 class="mt-3">Internet Research Task Force (IRTF)</h2>
{% for rpt in rg_reports %}
<div class="card my-3">
<div class="card-header">
{{ rpt.group.acronym }}
{% if rpt.group.state.slug != "active" %}
<span class="badge bg-success">{{ rpt.group.state.slug|upper }}</span>
{% endif %}
{{ rpt.time|date:"Y-m-d" }}
</div>
<div class="card-body">
<pre class="pasted">{{ rpt.desc|default:"(none)"|linkify|urlize_ietf_docs }}</pre>
</div>
</div>
{% endfor %}
{% endblock %}