forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview_decisions.html
More file actions
28 lines (28 loc) · 1.01 KB
/
review_decisions.html
File metadata and controls
28 lines (28 loc) · 1.01 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}IESG review decisions in {{ timeframe }}{% endblock %}
{% block content %}
{% origin %}
<h1>IESG review decisions in {{ timeframe }}</h1>
<p>
Showing review decisions announced in {{ timeframe }}.
</p>
<p>
<b>Announcements in:</b>
{% for y in years %}
<a {% if y != year %}href="{% url "ietf.iesg.views.review_decisions" year=y %}"{% endif %}>{{ y }}</a>{% if not forloop.last %},{% endif %}
{% endfor %}
</p>
{% for e in events %}
{% ifchanged %}
<h2 class="mt-4">{{ e.time|date:"F j, Y" }}</h2>
{% endifchanged %}
<p>
{{ e.desc }}
<a href="{% url "ietf.doc.views_doc.document_main" e.doc.name %}">{{ e.doc.name }}</a>
{% if e.doc.intended_std_level %}({{ e.doc.intended_std_level }}){% endif %}
- {{ e.doc.title }}
</p>
{% endfor %}
{% endblock %}