datatracker/ietf/templates/iesg/agenda_documents.html
Henrik Levkowetz e367c9e4ea Merged in [9855] from lars@netapp.com:
Fix bugs in adding/removing documents to personal ID list.
 - Legacy-Id: 9866
Note: SVN reference [9855] has been migrated to Git commit 0293061c3f
2015-07-23 08:54:46 +00:00

73 lines
2.2 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load ballot_icon %}
{% load ietf_filters %}
{% block pagehead %}
<link rel="alternate" type="application/atom+xml" href="/feed/iesg-agenda/">
{% endblock %}
{% block title %}Documents on future IESG telechat agendas{% endblock %}
{% block content %}
{% origin %}
<h1>Documents on future IESG telechat agendas</h1>
{% if user|has_role:"Secretariat" %}
<form class="form-inline" method="post">
{% csrf_token %}
{% endif %}
{% for t in telechats %}
<h2>IESG telechat {{t.date}}</h2>
<p>
<a class="btn btn-default" role="button" href="/iesg/agenda/">
<span class="fa fa-list"></span>
Full IESG agenda
</a>
<a class="btn btn-default" role="button" href="/iesg/agenda/telechat-{{t.date|date:"Y"}}-{{t.date|date:"m"}}-{{t.date|date:"d"}}-docs.tgz">
<span class="fa fa-download"></span>
Download documents
</a>
</p>
{% for num, section in t.sections %}
{% if "docs" not in section or section.docs %}
{% if num|sectionlevel == 1 %}<h3>{{ num }}. {{ section.title|safe }}</h3>{% endif %}
{% if num|sectionlevel == 2 %}<h4>{{ num }} {{ section.title|safe }}</h4>{% endif %}
{% if num|sectionlevel == 3 %}<h5>{{ num }} {{ section.title|safe }}</h5>{% endif %}
{% endif %}
{% if "docs" in section and section.docs %}
<table class="table table-condensed table-striped ietf">
<thead>
<tr>
<th></th>
<th>Document</th>
<th>Date</th>
<th>Status</th>
<th>IPR</th>
<th>AD / Shepherd</th>
</tr>
</thead>
<tbody>
{% for doc in section.docs %}
{% include "doc/search/search_result_row.html" with color_row_positions=True %}
{% endfor %}
</tbody>
</table>
{% endif %}
{% endfor %}
<hr>
{% endfor %}
{% if user|has_role:"Secretariat" %}
<input title="Save reschedule changes done with the drop-down boxes below" type="submit" value="Save reschedules" class="btn btn-primary">
</form>
{% endif %}
{% endblock content %}