author | nishanth |
Tue, 06 Jul 2010 23:31:33 +0530 | |
changeset 89 | f8e25dea5222 |
parent 85 | 451be7b1de20 |
permissions | -rw-r--r-- |
79 | 1 |
{% extends 'base.html' %} |
2 |
{% block content %} |
|
3 |
<a href="/event/admin/ditchax">Click here to return to event admin page</a> |
|
4 |
<table> |
|
5 |
<tr> |
|
6 |
<td>Question Description</td> |
|
7 |
<td>Topic</td> |
|
8 |
</tr> |
|
9 |
{% for question in questions %} |
|
10 |
<tr> |
|
85 | 11 |
<td><a href="/quiz/questions/edit/{{admin_key}}/{{question.id}}">{{question.description}}</a></td> |
81
848c009b8a60
now topic name is displayed instead of topic number in list_questions page
nishanth
parents:
79
diff
changeset
|
12 |
<td>{{question.topic_name}}</td> |
79 | 13 |
</tr> |
14 |
{% endfor %} |
|
15 |
</table> |
|
16 |
{% endblock %} |