diff options
author | Prabhu Ramachandran | 2011-11-17 17:35:30 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-17 17:35:30 +0530 |
commit | 9f674808a5681a0380531ff62079b94874641c1e (patch) | |
tree | 63fdb2f431d9fc68705e1170cc4e536a36c18169 /templates/exam/index.html | |
parent | 78e18eae416a37fdb2e27d4dde7ed9675692ac7d (diff) | |
download | online_test-9f674808a5681a0380531ff62079b94874641c1e.tar.gz online_test-9f674808a5681a0380531ff62079b94874641c1e.tar.bz2 online_test-9f674808a5681a0380531ff62079b94874641c1e.zip |
BUG/ENH: Cleaning up page templates and fixing bug
If you complete the quiz it was going into a redirect loop, this is
fixed. Also cleaned up all the page templates with proper block
contents.
Diffstat (limited to 'templates/exam/index.html')
-rw-r--r-- | templates/exam/index.html | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/templates/exam/index.html b/templates/exam/index.html deleted file mode 100644 index 5470cf5..0000000 --- a/templates/exam/index.html +++ /dev/null @@ -1,12 +0,0 @@ -<p> Welcome to the Examination. </p> -<br></br> - -{% if question_list %} - <ul> - {% for question in question_list %} - <li> <a href="/exam/{{ question.id }}/">{{ question.summary }} </a> </li> - {% endfor %} - </ul> -{% else %} - <p> Lucky you, no questions available.</p> -{% endif %} |