From 7690e31656fece5cd80be894f7907f25551291be Mon Sep 17 00:00:00 2001
From: Madhusudan.C.S
Date: Mon, 23 Nov 2009 12:01:47 +0530
Subject: Added a template for listing my talks.

---
 project/templates/talk/list-talks.html | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 project/templates/talk/list-talks.html

(limited to 'project')

diff --git a/project/templates/talk/list-talks.html b/project/templates/talk/list-talks.html
new file mode 100644
index 0000000..17a5216
--- /dev/null
+++ b/project/templates/talk/list-talks.html
@@ -0,0 +1,33 @@
+{% 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>
+    <th>Edit</th>
+  </tr>
+  {% for talk in talk_list %}
+    <tr>
+      <td>{{ talk.title }}</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>
+{% else %}
+<h2>No talks</h2>
+{% endif %}
+{% endblock content %}
-- 
cgit