From 9f674808a5681a0380531ff62079b94874641c1e Mon Sep 17 00:00:00 2001 From: Prabhu Ramachandran Date: Thu, 17 Nov 2011 17:35:30 +0530 Subject: 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. --- templates/exam/intro.html | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'templates/exam/intro.html') diff --git a/templates/exam/intro.html b/templates/exam/intro.html index 0d673b3..75de639 100644 --- a/templates/exam/intro.html +++ b/templates/exam/intro.html @@ -1,3 +1,8 @@ +{% extends "base.html" %} + +{% block title %}Instructions and Rules {% endblock %} + +{% block content %}
Welcome {{user.first_name.title}} {{user.last_name.title}}, @@ -44,3 +49,5 @@ carefully. {% csrf_token %} + +{% endblock content %} \ No newline at end of file -- cgit