README.rst 3.0 KB

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