From 1fb1bec70e814e94277e244c2fdc242262f3b19b Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 18 Aug 2012 09:47:22 -0700 Subject: [PATCH] Graph base template --- templates/graph_base.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/graph_base.html diff --git a/templates/graph_base.html b/templates/graph_base.html new file mode 100644 index 0000000..3ff2730 --- /dev/null +++ b/templates/graph_base.html @@ -0,0 +1,19 @@ +{# vim: set ft=htmldjango #} +{% extends "base.html" %} + +{% block head_css %} + +{% endblock %} + +{% block container %} +{% include "navbar.html" %} +
+ {% block graph %}

PUT A GRAPH HERE

{% endblock %} +
+{% endblock container %}