author | nishanth |
Fri, 02 Jul 2010 14:12:25 +0530 | |
changeset 87 | e81b105b1128 |
parent 85 | 451be7b1de20 |
permissions | -rw-r--r-- |
{% 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/edit/{{admin_key}}/{{question.id}}">{{question.description}}</a></td> <td>{{question.topic_name}}</td> </tr> {% endfor %} </table> {% endblock %}