summaryrefslogtreecommitdiff
path: root/templates/conference/talks.html
blob: aa255d9787a9f6073a3c34b3315c2036f4105b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block content %}


<h3>List of Talks</h3>
<table>
<th>Title
<th>Speaker
{% for talk in talks %}
<tr><td><a href="{{ URL_ROOT }}/details/{{ talk.id }}">{{ talk.title }}<td>{{ talk.speaker }}
{% endfor %}
</table>
{% endblock %}