blob: 81afba4b0206a4c2fd8597f36216bad2b4c5a6b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block content %}
<h3>List of Tutorials</h3>
<table>
<th>Title
<th>Speaker
{% for tutorial in tutorials %}
<tr><td><a href="{% url 'conference:details' tutorial.id %}">{{ tutorial.title }}<td>{{ tutorial.speaker }}
{% endfor %}
</table>
{% endblock %}
|