From 7e4dd89b4a22c33f597f5d50891936ad812c26a9 Mon Sep 17 00:00:00 2001 From: Sanj Date: Thu, 16 Feb 2012 19:11:28 +0530 Subject: [PATCH] ups, forgot to add templates --- chaloBEST/templates/area.html | 33 +++++++++++++++++++++++++++++++ chaloBEST/templates/areas.html | 36 ++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 chaloBEST/templates/area.html create mode 100644 chaloBEST/templates/areas.html diff --git a/chaloBEST/templates/area.html b/chaloBEST/templates/area.html new file mode 100644 index 0000000..c4a097d --- /dev/null +++ b/chaloBEST/templates/area.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block title %} Area: {{ area.name }} {% endblock %} + +{% block head %} + + +{% endblock %} + +{% block body %} + + +{% endblock %} diff --git a/chaloBEST/templates/areas.html b/chaloBEST/templates/areas.html new file mode 100644 index 0000000..c08815a --- /dev/null +++ b/chaloBEST/templates/areas.html @@ -0,0 +1,36 @@ +{% extends 'base.html' %} + +{% block title %} + Areas +{% endblock %} + +{% block head %} + +{% endblock %} + +{% block body %} + Filter: + + +{% endblock %}