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