123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ======================
- Dashboard installation
- ======================
- .. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
- To enable dashboard application follow these steps:
- * Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
- .. code:: python
- INSTALLED_APPS = (
- ...
- 'jet.dashboard',
- 'jet',
- 'django.contrib.admin',
- ...
- )
- * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
- .. code:: python
- urlpatterns = patterns(
- '',
- url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
- url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
- url(r'^admin/', include(admin.site.urls)),
- ...
- )
- * Create database tables:
- .. code:: python
- python manage.py migrate dashboard
- # or
- python manage.py syncdb
- * Collect static if you are in production environment:
- .. code:: python
- python manage.py collectstatic
|