README.rst 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. Free for non-commercial use. If you would like to use it in commercial project, please email at support@jet.geex-arts.com
  8. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png
  9. :width: 500px
  10. :height: 500px
  11. :scale: 50%
  12. :alt: Screenshot #1
  13. :align: center
  14. * Home page: incoming
  15. * **Live Demo**: http://demo.jet.geex-arts.com/admin/
  16. * Documentation: http://jet.readthedocs.org/
  17. * PyPI: https://pypi.python.org/pypi/django-jet
  18. * Support: support@jet.geex-arts.com
  19. Screenshots
  20. ===========
  21. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen1_720.png
  22. :alt: Screenshot #1
  23. :align: center
  24. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen1.png
  25. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen2_720.png
  26. :alt: Screenshot #1
  27. :align: center
  28. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen2.png
  29. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen3_720.png
  30. :alt: Screenshot #1
  31. :align: center
  32. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen3.png
  33. Beta
  34. ====
  35. Current version is still in beta phase. Use it at your own risk (though may be already enough workable).
  36. License
  37. =======
  38. Django JET is licensed under a
  39. The GNU General Public License, Version 2
  40. See online version of this license here:
  41. https://creativecommons.org/licenses/by-nc-sa/4.0/
  42. Installation
  43. ============
  44. * Download and install latest version of Django JET:
  45. .. code:: python
  46. pip install django-jet
  47. # or
  48. easy_install django-jet
  49. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  50. .. code:: python
  51. INSTALLED_APPS = (
  52. ...
  53. 'jet',
  54. 'django.contrib.admin',
  55. )
  56. * Make sure 'django.core.context_processors.request' context processor is enabled in settings.py:
  57. .. code:: python
  58. from django.conf import global_settings
  59. TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
  60. 'django.core.context_processors.request',
  61. )
  62. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  63. .. code:: python
  64. urlpatterns = patterns(
  65. '',
  66. url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
  67. url(r'^admin/', include(admin.site.urls)),
  68. ...
  69. )
  70. * Create database tables:
  71. .. code:: python
  72. python manage.py migrate jet
  73. # or
  74. python manage.py syncdb
  75. * Collect static if you are in production environment:
  76. .. code:: python
  77. python manage.py collectstatic
  78. * Clear your browser cache