# HG changeset patch # User nishanth # Date 1277980809 -19800 # Node ID fa10c32b3730769735f9e4c07b8f5b92ba51ced5 # Parent 2264a51fc9cfbb4023a00c652d06e23799ca7e2e the basic page to display list of questions is ready diff -r 2264a51fc9cf -r fa10c32b3730 templates/list_questions.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/list_questions.html Thu Jul 01 16:10:09 2010 +0530 @@ -0,0 +1,16 @@ +{% extends 'base.html' %} +{% block content %} +Click here to return to event admin page + + + + + + {% for question in questions %} + + + + +{% endfor %} +
Question DescriptionTopic
{{question.description}}{{question.topic}}
+{% endblock %}