summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
Diffstat (limited to 'project')
-rw-r--r--project/templates/talk/list-talks.html4
1 files changed, 1 insertions, 3 deletions
diff --git a/project/templates/talk/list-talks.html b/project/templates/talk/list-talks.html
index 17a5216..cb46e4e 100644
--- a/project/templates/talk/list-talks.html
+++ b/project/templates/talk/list-talks.html
@@ -14,16 +14,14 @@
<th>Topic</th>
<th>Duration</th>
<th>Audience type</th>
- <th>Edit</th>
</tr>
{% for talk in talk_list %}
<tr>
- <td>{{ talk.title }}</td>
+ <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.audience }}</td>
- <td><u><a href="/edit-talk/{{ talk.id }}/">Edit</a></u></td>
</tr>
{% endfor %}
</table>