From efb623af0bcb47d510501c282e1326b11343a29c Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 22 Sep 2012 22:27:04 -0400 Subject: site reorg --- .../templates/admin_tools/dashboard/dashboard.html | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html (limited to 'app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html') diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html b/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html new file mode 100644 index 0000000..76aaa1e --- /dev/null +++ b/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html @@ -0,0 +1,79 @@ +{% load i18n admin_tools_dashboard_tags %} + + + + + +{% if dashboard.Media.js %} + {% for js in dashboard.Media.js %} + + {% endfor %} +{% endif %} + +
+
+ {% for module in dashboard.children %} + {% if "column_1" in module.css_classes %} + {% admin_tools_render_dashboard_module module forloop.counter %} + {% endif %} + {% endfor %} +
+
+ {% for module in dashboard.children %} + {% if "column_2" in module.css_classes %} + {% admin_tools_render_dashboard_module module forloop.counter %} + {% endif %} + {% endfor %} +
+
+ {% for module in dashboard.children %} + {% if "column_3" in module.css_classes %} + {% admin_tools_render_dashboard_module module forloop.counter %} + {% endif %} + {% endfor %} +
+
-- cgit v1.2.3