42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
{% extends 'festival_base.html' %}
|
|
|
|
{% block centerCol %}
|
|
|
|
<div id="meeting_list" class="box">
|
|
<h1>Meeting Information</h1>
|
|
|
|
<br><br>
|
|
|
|
<b>Title:</b> {{ data.meeting.title }} <br>
|
|
<b>Intro:</b> {{ data.meeting.intro }} <br>
|
|
<b>Slug:</b> {{ data.meeting.slug }} <br>
|
|
|
|
{% for s in data.sessions %}
|
|
<br><b>{{s.title}}</b>:<br>
|
|
{% if s.talks %}
|
|
<ul style="list-style-type: circle">
|
|
{% for t in s.talks %}
|
|
<li> {{ t.title }} </li>
|
|
{% if t.documents %}
|
|
<ul style="list-style-type: disc">
|
|
{% for d in t.documents %}
|
|
<li> {{ d.title }} <a href="{{d.file}}"><image style="border-style: none" src="/static/images/document.gif"></a> </li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% if t.images %}
|
|
<ul style="list-style-type: disc">
|
|
{% for i in t.images %}
|
|
<li> {{ i.title }} <a href="{{i.file}}"><image style="border-style: none" src="/static/images/image.gif"></a> </li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
{% endblock %}
|