aboutsummaryrefslogtreecommitdiffstats
path: root/moon_dashboard/moon/dashboard.py
diff options
context:
space:
mode:
Diffstat (limited to 'moon_dashboard/moon/dashboard.py')
-rw-r--r--moon_dashboard/moon/dashboard.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/moon_dashboard/moon/dashboard.py b/moon_dashboard/moon/dashboard.py
new file mode 100644
index 00000000..0e3e491e
--- /dev/null
+++ b/moon_dashboard/moon/dashboard.py
@@ -0,0 +1,13 @@
+from django.utils.translation import ugettext_lazy as _
+
+import horizon
+
+
+class Moon(horizon.Dashboard):
+ name = _("Moon")
+ slug = "moon"
+ panels = ('model','policy','pdp',) # Add your panels here.
+ default_panel = 'model' # Specify the slug of the default panel.
+
+
+horizon.register(Moon)