templates/list_questions.html
author nishanth
Thu, 01 Jul 2010 16:10:09 +0530
changeset 79 fa10c32b3730
child 81 848c009b8a60
permissions -rw-r--r--
the basic page to display list of questions is ready

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