From 0143710e78ae01bae78a3b760fc8410bc86a3b2b Mon Sep 17 00:00:00 2001 From: prathamesh Date: Fri, 11 Jul 2014 14:14:19 +0530 Subject: Moved templates and static inside the app. --- testapp/exam/templates/base.html | 46 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 testapp/exam/templates/base.html (limited to 'testapp/exam/templates/base.html') diff --git a/testapp/exam/templates/base.html b/testapp/exam/templates/base.html new file mode 100644 index 0000000..3dfbe10 --- /dev/null +++ b/testapp/exam/templates/base.html @@ -0,0 +1,46 @@ + + + + + + {% block title %} + {% endblock %} + + + {% block meta %} + + + + {% endblock %} + + + {% block css %} + {% endblock %} + + {% block script %} + {% endblock %} + + + +
+
+ +
+
+

{% block formtitle %} {% endblock formtitle %}


+ {% block content %} + {% endblock %} +
+
+
+ +
+ + + + -- cgit