README.rst 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. * PyPI: https://pypi.python.org/pypi/django-jet
  17. * Support: support@jet.geex-arts.com
  18. Screenshots
  19. ===========
  20. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen1_720.png
  21. :alt: Screenshot #1
  22. :align: center
  23. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen1.png
  24. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen2_720.png
  25. :alt: Screenshot #1
  26. :align: center
  27. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen2.png
  28. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen3_720.png
  29. :alt: Screenshot #1
  30. :align: center
  31. :target: https://raw.githubusercontent.com/geex-arts/jet/static/screen3.png
  32. Beta
  33. ====
  34. Current version is still in beta phase. Use it at your own risk (though may be already enough workable).
  35. License
  36. =======
  37. Django JET is licensed under a
  38. Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
  39. See online version of this license here:
  40. https://creativecommons.org/licenses/by-nc-sa/4.0/
  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. Documentation
  79. =============
  80. Incoming