diff options
author | Madhusudan.C.S | 2010-09-08 15:39:47 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-09-08 15:39:47 +0530 |
commit | 88171f3f8d4ecb0d1e34b984bfc623f462fc59be (patch) | |
tree | 583405fbd7baf1a4e3546930e6c37f67ccc2f78d | |
parent | 45c1f338cede5048e65b3ea1217f2422c99f2f5a (diff) | |
download | scipycon-88171f3f8d4ecb0d1e34b984bfc623f462fc59be.tar.gz scipycon-88171f3f8d4ecb0d1e34b984bfc623f462fc59be.tar.bz2 scipycon-88171f3f8d4ecb0d1e34b984bfc623f462fc59be.zip |
Remove Edit Column in list my talks.
-rw-r--r-- | project/templates/talk/list-talks.html | 4 |
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> |