README.rst 2.7 KB

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