From ac5fe557e3e8784eed425301d0e6fa82a1bd8ebe Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Wed, 9 Dec 2009 22:57:53 +0530 Subject: Added template file for list of talks. --- project/templates/talk/list-all-talks.html | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 project/templates/talk/list-all-talks.html diff --git a/project/templates/talk/list-all-talks.html b/project/templates/talk/list-all-talks.html new file mode 100644 index 0000000..33763ca --- /dev/null +++ b/project/templates/talk/list-all-talks.html @@ -0,0 +1,33 @@ +{% extends "base.html" %} + +{% block title %}My Talks{% endblock %} + +{% block content %} +

My Talks

+{% if talk_list %} +

List of the talks I have submitted.

+ + + + + + + + + + + {% for talk in talk_list %} + + + + + + + + + {% endfor %} +
TitleSpeakerTopicDurationAudience typeAbstract
{{ talk.title }}{{ talk.speaker.get_full_name }}{{ talk.topic }}{{ talk.duration }}{{ talk.audience }}{{ talk.abstract }}
+{% else %} +

No talks

+{% endif %} +{% endblock content %} -- cgit