README.rst 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. ==========
  2. Django JET
  3. ==========
  4. .. image:: https://travis-ci.org/geex-arts/django-jet.svg?branch=master
  5. :target: https://travis-ci.org/geex-arts/django-jet
  6. **Modern template for Django admin interface with improved functionality**
  7. Django JET has two kinds of licenses: open-source (AGPLv3) and commercial. Please note that using AGPLv3
  8. code in your programs make them AGPL too. So if you don't want to comply with that we can provide you a commercial
  9. license (visit Home page). The commercial license is designed for using Django JET in commercial products
  10. and applications without the provisions of the AGPLv3.
  11. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png
  12. :width: 500px
  13. :height: 500px
  14. :scale: 50%
  15. :alt: Logo
  16. :align: center
  17. * Home page: http://jet.geex-arts.com/
  18. * **Live Demo**: http://demo.jet.geex-arts.com/admin/
  19. * Documentation: http://jet.readthedocs.org/
  20. * PyPI: https://pypi.python.org/pypi/django-jet
  21. * Support: support@jet.geex-arts.com
  22. Why Django JET?
  23. ===============
  24. * New fresh look
  25. * Responsive mobile interface
  26. * Useful admin home page
  27. * Minimal template overriding
  28. * Easy integration
  29. * Themes support
  30. * Autocompletion
  31. * Handy controls
  32. Screenshots
  33. ===========
  34. .. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1_720.png
  35. :alt: Screenshot #1
  36. :align: center
  37. :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1.png
  38. .. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2_720.png
  39. :alt: Screenshot #2
  40. :align: center
  41. :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2.png
  42. .. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3_720.png
  43. :alt: Screenshot #3
  44. :align: center
  45. :target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3.png
  46. Installation
  47. ============
  48. * Download and install latest version of Django JET:
  49. .. code:: python
  50. pip install django-jet
  51. # or
  52. easy_install django-jet
  53. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  54. .. code:: python
  55. INSTALLED_APPS = (
  56. ...
  57. 'jet',
  58. 'django.contrib.admin',
  59. )
  60. * Make sure ``django.template.context_processors.request`` context processor is enabled in settings.py (Django 1.8+ way):
  61. .. code:: python
  62. TEMPLATES = [
  63. {
  64. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  65. 'DIRS': [],
  66. 'APP_DIRS': True,
  67. 'OPTIONS': {
  68. 'context_processors': [
  69. ...
  70. 'django.template.context_processors.request',
  71. ...
  72. ],
  73. },
  74. },
  75. ]
  76. .. warning::
  77. Before Django 1.8 you should specify context processors different way. Also use ``django.core.context_processors.request`` instead of ``django.template.context_processors.request``.
  78. .. code:: python
  79. from django.conf import global_settings
  80. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  81. 'django.core.context_processors.request',
  82. )
  83. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  84. .. code:: python
  85. urlpatterns = patterns(
  86. '',
  87. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  88. url(r'^admin/', include(admin.site.urls)),
  89. ...
  90. )
  91. * Create database tables:
  92. .. code:: python
  93. python manage.py migrate jet
  94. # or
  95. python manage.py syncdb
  96. * Collect static if you are in production environment:
  97. .. code:: python
  98. python manage.py collectstatic
  99. * Clear your browser cache
  100. Dashboard installation
  101. ======================
  102. .. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
  103. To enable dashboard application follow these steps:
  104. * Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
  105. .. code:: python
  106. INSTALLED_APPS = (
  107. ...
  108. 'jet.dashboard',
  109. 'jet',
  110. 'django.contrib.admin',
  111. ...
  112. )
  113. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  114. .. code:: python
  115. urlpatterns = patterns(
  116. '',
  117. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  118. url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
  119. url(r'^admin/', include(admin.site.urls)),
  120. ...
  121. )
  122. * **For Google Analytics widgets only** install python package:
  123. .. code::
  124. pip install google-api-python-client
  125. * Create database tables:
  126. .. code:: python
  127. python manage.py migrate dashboard
  128. # or
  129. python manage.py syncdb
  130. * Collect static if you are in production environment:
  131. .. code:: python
  132. python manage.py collectstatic