--- /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 %}