blob: f2639916a8389a90ab99de803f2955d5d83cfa06 (
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>Contact</th>
<th>Topic</th>
<th>Duration</th>
<th>Audience type</th>
</tr>
{% for talk in talk_list %}
<tr>
<td><u><a href="/{{ params.scope }}/edit-talk/{{ talk.id }}/">{{ talk.title }}</a></u></td>
<td>{{ talk.contact }}</td>
<td>{{ talk.topic }}</td>
<td>{{ talk.duration }}</td>
<td>{{ talk.get_audience_display }}</td>
</tr>
{% endfor %}
</table>
{% else %}
<h2>No talks</h2>
{% endif %}
{% endblock content %}
|