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/login.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/login.html')
-rw-r--r-- | templates/exam/login.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/exam/login.html b/templates/exam/login.html index c8e27e4..b8594f4 100644 --- a/templates/exam/login.html +++ b/templates/exam/login.html @@ -1,3 +1,8 @@ +{% extends "base.html" %} + +{% block title %}Login{% endblock title %} + +{% block content %} <p> Welcome to the Examination. Please login to proceed.</p> @@ -10,3 +15,4 @@ Please login to proceed.</p> </form> <!-- <a href="/exam/forgotpassword/">Forgot Password</a> <br /> --> <a href="/exam/register/">New User Registration</a> +{% endblock content %}
\ No newline at end of file |