summaryrefslogtreecommitdiff
path: root/horizon/conf/dash_template/dashboard.py.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/conf/dash_template/dashboard.py.tmpl')
-rw-r--r--horizon/conf/dash_template/dashboard.py.tmpl13
1 files changed, 0 insertions, 13 deletions
diff --git a/horizon/conf/dash_template/dashboard.py.tmpl b/horizon/conf/dash_template/dashboard.py.tmpl
deleted file mode 100644
index 9e435bef..00000000
--- a/horizon/conf/dash_template/dashboard.py.tmpl
+++ /dev/null
@@ -1,13 +0,0 @@
-from django.utils.translation import ugettext_lazy as _
-
-import horizon
-
-
-class {{ dash_name|title }}(horizon.Dashboard):
- name = _("{{ dash_name|title }}")
- slug = "{{ dash_name|slugify }}"
- panels = () # Add your panels here.
- default_panel = '' # Specify the slug of the dashboard's default panel.
-
-
-horizon.register({{ dash_name|title }})