summaryrefslogtreecommitdiff
path: root/templates/conference/talks.html
blob: 0a055761bdde87c78269615de033d8f8db9bea76 (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 'conference:details' talk.id %}">{{ talk.title }}<td>{{ talk.speaker }}
{% endfor %}
</table>
{% endblock %}