Enabled file for network_allocation_panel
diff --git a/horizon/files/enabled/network_allocation_panel.py b/horizon/files/enabled/network_allocation_panel.py
new file mode 100644
index 0000000..dd194d4
--- /dev/null
+++ b/horizon/files/enabled/network_allocation_panel.py
@@ -0,0 +1,11 @@
+# Add to installed apps
+ADD_INSTALLED_APPS = ['horizon_network_allocation_panel']
+# The slug of the panel to be added to HORIZON_CONFIG. Required.
+PANEL = 'network_allocation'
+# The slug of the dashboard the PANEL associated with. Required.
+PANEL_DASHBOARD = 'admin'
+# The slug of the panel group the PANEL is associated with.
+PANEL_GROUP = 'admin'
+
+# Python panel class of the PANEL to be added.
+ADD_PANEL = 'horizon_network_allocation_panel.panel.NetworkAllocationPanel'