Remove Edit Column in list my talks.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Wed, 08 Sep 2010 15:39:47 +0530
changeset 160 1097a7718f99
parent 159 3b0045bbea1b
child 161 edbba5016ae4
Remove Edit Column in list my talks.
project/templates/talk/list-talks.html
--- 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>