31 lines
890 B
HTML
31 lines
890 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}{{ meeting }} : {{ acronym }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ meeting }} : {{ acronym }}</h1>
|
|
|
|
{% for session in sessions %}
|
|
<h2>{{ session.time }}{% if session.name %} : {{ session.name }}{% endif %}</h2>
|
|
|
|
{% if session.filtered_sessionpresentation_set %}
|
|
<p>Materials:</p>
|
|
|
|
<table class="table table-condensed table-striped">
|
|
{% for pres in session.filtered_sessionpresentation_set %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'doc_view' name=pres.document.name rev=pres.rev%}">{{pres.document.title}} ({{ pres.document.name }}-{{ pres.rev }})
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|