templates/list_questions.html
author nishanth
Thu, 01 Jul 2010 16:20:17 +0530
changeset 81 848c009b8a60
parent 79 fa10c32b3730
child 84 08af9e4ada78
permissions -rw-r--r--
now topic name is displayed instead of topic number in list_questions page

{% 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_name}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}