project/templates/talk/list-talks.html
changeset 160 1097a7718f99
parent 41 cf02d105aea2
child 230 9649b07aa4c8
--- a/project/templates/talk/list-talks.html	Wed Sep 08 15:39:23 2010 +0530
+++ b/project/templates/talk/list-talks.html	Wed Sep 08 15:39:47 2010 +0530
@@ -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>