From f077badf3163fc36c111dc45fe8d7d6f57d8712a Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Fri, 8 Nov 2013 09:31:01 +0200 Subject: Merged motor and checkin --- templates/default.html | 29 +++++++++++++++++++++++++++++ templates/login.html | 10 ++++++++++ templates/manage.html | 1 + 3 files changed, 40 insertions(+) create mode 100644 templates/default.html create mode 100644 templates/login.html create mode 100644 templates/manage.html (limited to 'templates') diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..ca5829a --- /dev/null +++ b/templates/default.html @@ -0,0 +1,29 @@ + + + + {{ title }} + + + + + + + + + +
+ + {% block main %} + + {% endblock main %} + +
+ + + + + + diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..2167d15 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,10 @@ +{% extends "default.html" %} + +{% block main %} +
+ {% csrf_token %} + + {{ form.as_p }} + +
+{% endblock main %} diff --git a/templates/manage.html b/templates/manage.html new file mode 100644 index 0000000..67b0352 --- /dev/null +++ b/templates/manage.html @@ -0,0 +1 @@ +{% extends "default.html" %} -- cgit v1.2.3