From 3dd69acb037ae00b3fa4b93ac9d899cf9a279772 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Sun, 18 May 2014 19:25:50 -0700 Subject: [PATCH] abstracting out base dashboard stuff to single-dashboard support --- .../admin/dashboard/dashboard_base.html | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 planetstack/templates/admin/dashboard/dashboard_base.html diff --git a/planetstack/templates/admin/dashboard/dashboard_base.html b/planetstack/templates/admin/dashboard/dashboard_base.html new file mode 100644 index 0000000..2443bbb --- /dev/null +++ b/planetstack/templates/admin/dashboard/dashboard_base.html @@ -0,0 +1,70 @@ +{% extends "admin/base.html" %} +{% load admin_static %} + +{% block extrahead %} + + + + + + + + + + + + + + + + + + + +{% endblock %} + +{% block content %} +dashboard goes here +{% endblock %} -- 2.47.0