tuskar-ui/docs/source/ref/horizon.rst
Gabriel Hurley ac71246802 Adds PanelGroup class and site customization hook.
* Adds a PanelGroup class and slightly reworks the way panel
    ordering is handled to fix bug 963550.

  * Adds the option to load a python module containing
    site customizations after the site is fully initialized,
    but before the URLConf is dynamically constructed.
    Fixes bug 965839.

Change-Id: Idc5358f2db6751494bcdfc382ec3bb6af65199b9
2012-03-26 18:22:07 -07:00

847 B

The horizon Module

horizon

Horizon ships with a single point of contact for hooking into your project if you aren't developing your own ~horizon.Dashboard or ~horizon.Panel:

import horizon

From there you can access all the key methods you need.

Horizon

urls

The auto-generated URLconf for Horizon. Usage:

url(r'', include(horizon.urls)),

register

unregister

get_absolute_url

get_user_home

get_dashboard

get_default_dashboard

get_dashboards

Dashboard

Dashboard

Panel

Panel

PanelGroup