templates/list_questions.html
changeset 79 fa10c32b3730
child 81 848c009b8a60
equal deleted inserted replaced
78:2264a51fc9cf 79:fa10c32b3730
       
     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>
       
    11 <td><a href="/quiz/questions/ditchax/question.id">{{question.description}}</a></td>
       
    12 <td>{{question.topic}}</td>
       
    13 </tr>
       
    14 {% endfor %}
       
    15 </table>
       
    16 {% endblock %}