README.rst 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 is double licensed. Free for non-commercial use under the GPLv2 license.
  8. If you would like to use it in commercial project, please email at support@jet.geex-arts.com
  9. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png
  10. :width: 500px
  11. :height: 500px
  12. :scale: 50%
  13. :alt: Screenshot #1
  14. :align: center
  15. * Home page: incoming
  16. * **Live Demo**: http://demo.jet.geex-arts.com/admin/
  17. * Documentation: http://jet.readthedocs.org/
  18. * PyPI: https://pypi.python.org/pypi/django-jet
  19. * Support: support@jet.geex-arts.com
  20. Screenshots
  21. ===========
  22. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen1_720.png
  23. :alt: Screenshot #1
  24. :align: center
  25. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen1.png
  26. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen2_720.png
  27. :alt: Screenshot #1
  28. :align: center
  29. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen2.png
  30. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen3_720.png
  31. :alt: Screenshot #1
  32. :align: center
  33. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen3.png
  34. Beta
  35. ====
  36. Current version is still in beta phase. Use it at your own risk (though may be already enough workable).
  37. License
  38. =======
  39. Django JET is licensed under a
  40. The GNU General Public License, Version 2
  41. Installation
  42. ============
  43. * Download and install latest version of Django JET:
  44. .. code:: python
  45. pip install django-jet
  46. # or
  47. easy_install django-jet
  48. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  49. .. code:: python
  50. INSTALLED_APPS = (
  51. ...
  52. 'jet',
  53. 'django.contrib.admin',
  54. )
  55. * Make sure 'django.core.context_processors.request' context processor is enabled in settings.py:
  56. .. code:: python
  57. from django.conf import global_settings
  58. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  59. 'django.core.context_processors.request',
  60. )
  61. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  62. .. code:: python
  63. urlpatterns = patterns(
  64. '',
  65. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  66. url(r'^admin/', include(admin.site.urls)),
  67. ...
  68. )
  69. * Create database tables:
  70. .. code:: python
  71. python manage.py migrate jet
  72. # or
  73. python manage.py syncdb
  74. * Collect static if you are in production environment:
  75. .. code:: python
  76. python manage.py collectstatic
  77. * Clear your browser cache
  78. Dashboard installation
  79. ======================
  80. .. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
  81. To enable dashboard application follow these steps:
  82. * Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
  83. .. code:: python
  84. INSTALLED_APPS = (
  85. ...
  86. 'jet.dashboard',
  87. 'jet',
  88. 'django.contrib.admin',
  89. ...
  90. )
  91. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  92. .. code:: python
  93. urlpatterns = patterns(
  94. '',
  95. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  96. url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
  97. url(r'^admin/', include(admin.site.urls)),
  98. ...
  99. )
  100. * **For Google Analytics widgets only** install python package:
  101. .. code::
  102. pip install google-api-python-client
  103. * Create database tables:
  104. .. code:: python
  105. python manage.py migrate dashboard
  106. # or
  107. python manage.py syncdb
  108. * Collect static if you are in production environment:
  109. .. code:: python
  110. python manage.py collectstatic