diff --git a/ietf/templates/iesg/past_documents.html b/ietf/templates/iesg/past_documents.html new file mode 100644 index 000000000..eb8993a0f --- /dev/null +++ b/ietf/templates/iesg/past_documents.html @@ -0,0 +1,101 @@ +{% extends "base.html" %} +{# Copyright The IETF Trust 2015, All Rights Reserved #} +{% load origin staticfiles %} + +{% load ballot_icon %} +{% load ietf_filters %} + +{% block pagehead %} + +{% endblock %} + +{% block title %}Documents on recent agendas{% endblock %} + +{% block content %} + {% origin %} +

Documents on recent agendas in states {% for state in states %}{{state.name}}{% if not forloop.last %}, {% endif %} {% endfor %}

+ + + + + + + + + + + + + + + + + + + {% for doc in docs %} + + + + {% include "doc/search/status_columns.html" %} + + + + {% endfor %} + +
DocumentTelechat DateStatusResponsible ADDiscusses
+ {{ doc.displayname_with_link }} +
+ {{ doc.title }} +
+ {{ doc.telechat }} + {{ doc.ad|default:"" }} + {% for p in doc.blocking_positions %} + {% if p.old_ad %} + + {% endif %} + {{ p.ad }} + ({% if p.discuss_time %}{{ p.discuss_time|timesince_days }}{% endif %} + days ago{% if doc.get_state_url != "rfc" and p.rev != doc.rev %} + for -{{ p.rev }}{% endif %})
+ {% if p.old_ad %} +
+ {% endif %} + {% endfor %} +
+{% endblock %} + +{% block js %} + + +{% endblock %} +