From 12d1f9fd979c11b9e3a3a89b1595b07569b88f79 Mon Sep 17 00:00:00 2001 From: workmai Date: Thu, 4 Oct 2018 12:14:39 -0600 Subject: Initial commit of the coding assignment base project --- coding_assignment_project/templates/__init__.py | 0 coding_assignment_project/templates/base.html | 114 ++++++++++++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 coding_assignment_project/templates/__init__.py create mode 100644 coding_assignment_project/templates/base.html (limited to 'coding_assignment_project/templates') diff --git a/coding_assignment_project/templates/__init__.py b/coding_assignment_project/templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/coding_assignment_project/templates/base.html b/coding_assignment_project/templates/base.html new file mode 100644 index 0000000..231c385 --- /dev/null +++ b/coding_assignment_project/templates/base.html @@ -0,0 +1,114 @@ +{% load static %} + + + + + + + + + + + + Procurement Dashboard + + + + + + + + + + + + + + {% block additional_css %} + {% endblock %} + + + + +
+ + + + +
+
+
+

{{ page_name | title }}

+
+ +
+ + +
+ {% block main_content_area %} + {% endblock %} +
+ +
+ + +
+ + + + + + + + + + + + + + {% block additional_js %} + {% endblock %} + + + + -- cgit v1.1