the basic page to display list of questions is ready
authornishanth
Thu, 01 Jul 2010 16:10:09 +0530
changeset 79 fa10c32b3730
parent 78 2264a51fc9cf
child 80 96da6bf2b632
the basic page to display list of questions is ready
templates/list_questions.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/list_questions.html	Thu Jul 01 16:10:09 2010 +0530
@@ -0,0 +1,16 @@
+{% extends 'base.html' %}
+{% block content %}
+<a href="/event/admin/ditchax">Click here to return to event admin page</a>
+<table>
+		<tr>
+				<td>Question Description</td>
+				<td>Topic</td>
+		</tr>
+		{% for question in questions %}
+		<tr>
+<td><a href="/quiz/questions/ditchax/question.id">{{question.description}}</a></td>
+<td>{{question.topic}}</td>
+</tr>
+{% endfor %}
+</table>
+{% endblock %}