README.rst 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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 (AGPLv2) and commercial. Please note that using AGPLv2
  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 AGPLv2.
  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. License
  47. =======
  48. Django JET is licensed under a
  49. The GNU General Public License, Version 2
  50. Installation
  51. ============
  52. * Download and install latest version of Django JET:
  53. .. code:: python
  54. pip install django-jet
  55. # or
  56. easy_install django-jet
  57. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  58. .. code:: python
  59. INSTALLED_APPS = (
  60. ...
  61. 'jet',
  62. 'django.contrib.admin',
  63. )
  64. * Make sure ``django.template.context_processors.request`` context processor is enabled in settings.py (Django 1.8+ way):
  65. .. code:: python
  66. TEMPLATES = [
  67. {
  68. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  69. 'DIRS': [],
  70. 'APP_DIRS': True,
  71. 'OPTIONS': {
  72. 'context_processors': [
  73. ...
  74. 'django.template.context_processors.request',
  75. ...
  76. ],
  77. },
  78. },
  79. ]
  80. .. warning::
  81. 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``.
  82. .. code:: python
  83. from django.conf import global_settings
  84. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  85. 'django.core.context_processors.request',
  86. )
  87. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  88. .. code:: python
  89. urlpatterns = patterns(
  90. '',
  91. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  92. url(r'^admin/', include(admin.site.urls)),
  93. ...
  94. )
  95. * Create database tables:
  96. .. code:: python
  97. python manage.py migrate jet
  98. # or
  99. python manage.py syncdb
  100. * Collect static if you are in production environment:
  101. .. code:: python
  102. python manage.py collectstatic
  103. * Clear your browser cache
  104. Dashboard installation
  105. ======================
  106. .. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
  107. To enable dashboard application follow these steps:
  108. * Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
  109. .. code:: python
  110. INSTALLED_APPS = (
  111. ...
  112. 'jet.dashboard',
  113. 'jet',
  114. 'django.contrib.admin',
  115. ...
  116. )
  117. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  118. .. code:: python
  119. urlpatterns = patterns(
  120. '',
  121. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  122. url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
  123. url(r'^admin/', include(admin.site.urls)),
  124. ...
  125. )
  126. * **For Google Analytics widgets only** install python package:
  127. .. code::
  128. pip install google-api-python-client
  129. * Create database tables:
  130. .. code:: python
  131. python manage.py migrate dashboard
  132. # or
  133. python manage.py syncdb
  134. * Collect static if you are in production environment:
  135. .. code:: python
  136. python manage.py collectstatic