[
`English <../../../contributor/ref/horizon.html>`__
| `中文 (简体, 中国) <../../../zh_CN/contributor/ref/horizon.html>`__
| `русский <../../../ru/contributor/ref/horizon.html>`__
| `português (Brasil) <../../../pt_BR/contributor/ref/horizon.html>`__
| `नेपाली <../../../ne/contributor/ref/horizon.html>`__
| `한국어 (대한민국) <../../../ko_KR/contributor/ref/horizon.html>`__
| `Indonesia <../../../id/contributor/ref/horizon.html>`__
| `français <../../../fr/contributor/ref/horizon.html>`__
| `español <../../../es/contributor/ref/horizon.html>`__
| `esperanto <../../../eo/contributor/ref/horizon.html>`__
| `English (United Kingdom) <../../../en_GB/contributor/ref/horizon.html>`__
| `Deutsch <../../../de/contributor/ref/horizon.html>`__
]

==================
The Horizon Module
==================

.. module:: horizon

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

    import horizon

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

Horizon
=======

.. attribute:: urls

    The auto-generated URLconf for horizon. Usage::

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

.. autofunction:: register
.. autofunction:: unregister
.. autofunction:: get_absolute_url
.. autofunction:: get_user_home
.. autofunction:: get_dashboard
.. autofunction:: get_default_dashboard
.. autofunction:: get_dashboards

Dashboard
=========

.. autoclass:: Dashboard
    :members:

Panel
=====

.. autoclass:: Panel
    :members:

Panel Group
===========

.. autoclass:: PanelGroup
    :members:
