templates/list_questions.html
changeset 84 08af9e4ada78
parent 81 848c009b8a60
child 85 451be7b1de20
equal deleted inserted replaced
83:76971eed55c6 84:08af9e4ada78
     6 				<td>Question Description</td>
     6 				<td>Question Description</td>
     7 				<td>Topic</td>
     7 				<td>Topic</td>
     8 		</tr>
     8 		</tr>
     9 		{% for question in questions %}
     9 		{% for question in questions %}
    10 		<tr>
    10 		<tr>
    11 <td><a href="/quiz/questions/ditchax/question.id">{{question.description}}</a></td>
    11 				<td><a href="/quiz/questions/edit/ditchax/{{question.id}}">{{question.description}}</a></td>
    12 <td>{{question.topic_name}}</td>
    12 <td>{{question.topic_name}}</td>
    13 </tr>
    13 </tr>
    14 {% endfor %}
    14 {% endfor %}
    15 </table>
    15 </table>
    16 {% endblock %}
    16 {% endblock %}