diff -r 9a77edda77b7 -r fda1c66b25f9 project/templates/talk/talk_detail.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/talk/talk_detail.html Fri Oct 30 15:09:12 2009 +0530 @@ -0,0 +1,43 @@ +{% extends "base.html" %} + +{% block title %}{{ object.title }}{% endblock %} + +{% block content %} +

{{ object.title }}

+

View all talks

+ + + +
+
Title
+
{{ object.title }}
+
Speaker
+
{{ object.speaker.get_profile.fullname }}
+
Speaker's profile
+
{{ object.speaker.get_profile.about }}
+
Topic
+
{{ object.topic }}
+
Abstract
+
{{ object.abstract }}
+
Outline
+
{{ object.outline }}
+
Audience
+ {% load talk_extras %} + {% with choices|choice:object.audience as audience %} +
{{ audience|title }}
+ {% endwith %} +
Tags
+
{{ object.tags }}
+
+ + +{% endblock content %} + +