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/base.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 templates/base.html (limited to 'templates/base.html') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..22e9ba2 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,22 @@ + + + + + +{% block title %} +{% endblock %} + +{% block meta %} +{% endblock%} +{% block script %} +{% endblock %} + + + + +{% block content %} +{% endblock %} + + + \ No newline at end of file -- cgit