blob: fd11a6e5b6f721f11b87724abfd1750cafa8eb7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block content %}
<h2 align="center"><u>List of Talks</u></h2>
<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 %}
|