README.rst 3.1 KB

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