{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin static %} {% 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 %}
Document Telechat Date Status Responsible AD Discusses
{{ doc.displayname_with_link }}
{{ doc.title }}
{{ doc.telechat }} {{ doc.ad|default:"" }} {% for p in doc.blocking_positions %} {% if p.is_old_pos %} {% endif %} {{ p.balloter }} ({% 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.is_old_pos %}
{% endif %} {% endfor %}
{% endblock %} {% block js %} {% endblock %}