README.rst 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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 (GPLv2) and commercial. Please note that using GPLv2
  8. code in your programs make them GPL 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 GPLv2.
  11. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png
  12. :width: 500px
  13. :height: 500px
  14. :scale: 50%
  15. :alt: Screenshot #1
  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. Screenshots
  23. ===========
  24. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen1_720.png
  25. :alt: Screenshot #1
  26. :align: center
  27. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen1.png
  28. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen2_720.png
  29. :alt: Screenshot #1
  30. :align: center
  31. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen2.png
  32. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen3_720.png
  33. :alt: Screenshot #1
  34. :align: center
  35. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen3.png
  36. License
  37. =======
  38. Django JET is licensed under a
  39. The GNU General Public License, Version 2
  40. Installation
  41. ============
  42. * Download and install latest version of Django JET:
  43. .. code:: python
  44. pip install django-jet
  45. # or
  46. easy_install django-jet
  47. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  48. .. code:: python
  49. INSTALLED_APPS = (
  50. ...
  51. 'jet',
  52. 'django.contrib.admin',
  53. )
  54. * Make sure ``django.template.context_processors.request`` context processor is enabled in settings.py (Django 1.8+ way):
  55. .. code:: python
  56. TEMPLATES = [
  57. {
  58. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  59. 'DIRS': [],
  60. 'APP_DIRS': True,
  61. 'OPTIONS': {
  62. 'context_processors': [
  63. ...
  64. 'django.template.context_processors.request',
  65. ...
  66. ],
  67. },
  68. },
  69. ]
  70. .. warning::
  71. 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``.
  72. .. code:: python
  73. from django.conf import global_settings
  74. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  75. 'django.core.context_processors.request',
  76. )
  77. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  78. .. code:: python
  79. urlpatterns = patterns(
  80. '',
  81. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  82. url(r'^admin/', include(admin.site.urls)),
  83. ...
  84. )
  85. * Create database tables:
  86. .. code:: python
  87. python manage.py migrate jet
  88. # or
  89. python manage.py syncdb
  90. * Collect static if you are in production environment:
  91. .. code:: python
  92. python manage.py collectstatic
  93. * Clear your browser cache
  94. Dashboard installation
  95. ======================
  96. .. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
  97. To enable dashboard application follow these steps:
  98. * Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
  99. .. code:: python
  100. INSTALLED_APPS = (
  101. ...
  102. 'jet.dashboard',
  103. 'jet',
  104. 'django.contrib.admin',
  105. ...
  106. )
  107. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  108. .. code:: python
  109. urlpatterns = patterns(
  110. '',
  111. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  112. url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
  113. url(r'^admin/', include(admin.site.urls)),
  114. ...
  115. )
  116. * **For Google Analytics widgets only** install python package:
  117. .. code::
  118. pip install google-api-python-client
  119. * Create database tables:
  120. .. code:: python
  121. python manage.py migrate dashboard
  122. # or
  123. python manage.py syncdb
  124. * Collect static if you are in production environment:
  125. .. code:: python
  126. python manage.py collectstatic