tabs) and kill the scripts block in favour of just using a js block with a script tag (which is easier to understand for context-sensitive modes such as web-mode in Emacs). Also fix a couple of details, e.g. missing semicolons in JS snippets. - Legacy-Id: 9096
23 lines
568 B
HTML
23 lines
568 B
HTML
{% extends "ietf.html" %}
|
|
|
|
{% block title %}{{ meeting }} : {{ acronym }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ meeting }} : {{ acronym }} : {{ time }} </h1>
|
|
|
|
{% if session.name %}
|
|
<h2>{{ session.name }}</h2>
|
|
{% endif %}
|
|
|
|
{% if session.sessionpresentation_set.all.count %}
|
|
<p>Materials:</p>
|
|
|
|
<ul>
|
|
{% for pres in session.sessionpresentation_set.all %}
|
|
<li><a href="{% url 'doc_view' name=pres.document.name rev=pres.rev%}">{{ pres.document.name }}-{{ pres.rev }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|