Skip to content

Commit

Permalink
Merge branch 'ZuluPro-README' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Fantomas42 committed Apr 14, 2015
2 parents 142d999 + e7d3c69 commit f370e6b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.rst
Expand Up @@ -5,5 +5,38 @@ Admin-tools Zinnia
Admin-tools-zinnia is package providing new dashboard modules related to
your `Zinnia`_ application for `django-admin-tools`_.

Installation
============

Install the package on your system: ::

$ pip install django-admin-tools
$ pip install admin-tools-zinnia

Add the followings apps at the beginning of your ``INSTALLED_APPS``: ::

INSTALLED_APPS = (
'admin_tools',
'admin_tools.theming',
'admin_tools.menu',
'admin_tools.dashboard',
'admin_tools_zinnia',
...
)

Add ``admin_tools.urls`` before ``admin.site.urls`` to your URL file: ::

urlpatterns = [
...
url(r'^admin/tools/', include('admin_tools.urls')),
url(r'^admin/', include(admin.site.urls)),
]

Launch database migrations: ::

$ ./manage.py migrate

You are done !

.. _Zinnia: http://django-blog-zinnia.com/
.. _django-admin-tools: http://pypi.python.org/pypi/django-admin-tools/

0 comments on commit f370e6b

Please sign in to comment.