blob: a9cefc8e05eda547fdce21209bd8ebd073c7bc66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{% extends "base.html" %}
{% block title %}My Talks{% endblock %}
{% block content %}
<h1>My Talks</h1>
{% if talk_list %}
<h3>List of the talks I have submitted.</h3>
<table class="list-talks">
<tr>
<th>Title</th>
<th>Speaker</th>
<th>Topic</th>
<th>Duration</th>
<th>Audience type</th>
</tr>
{% for talk in talk_list %}
<tr>
<td>{{ talk.title }}</td>
<td>{{ talk.speaker.get_full_name }}</td>
<td>{{ talk.topic }}</td>
<td>{{ talk.duration }}</td>
<td>{{ talk.audience }}</td>
</tr>
{% endfor %}
</table>
{% else %}
<h2>No talks</h2>
{% endif %}
{% endblock content %}
|