README.rst 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. See online version of this license here:
  42. https://creativecommons.org/licenses/by-nc-sa/4.0/
  43. Installation
  44. ============
  45. * Download and install latest version of Django JET:
  46. .. code:: python
  47. pip install django-jet
  48. # or
  49. easy_install django-jet
  50. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  51. .. code:: python
  52. INSTALLED_APPS = (
  53. ...
  54. 'jet',
  55. 'django.contrib.admin',
  56. )
  57. * Make sure 'django.core.context_processors.request' context processor is enabled in settings.py:
  58. .. code:: python
  59. from django.conf import global_settings
  60. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  61. 'django.core.context_processors.request',
  62. )
  63. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  64. .. code:: python
  65. urlpatterns = patterns(
  66. '',
  67. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  68. url(r'^admin/', include(admin.site.urls)),
  69. ...
  70. )
  71. * Create database tables:
  72. .. code:: python
  73. python manage.py migrate jet
  74. # or
  75. python manage.py syncdb
  76. * Collect static if you are in production environment:
  77. .. code:: python
  78. python manage.py collectstatic
  79. * Clear your browser cache