README.rst 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. * Demo: incoming
  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. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  50. .. code:: python
  51. urlpatterns = patterns(
  52. '',
  53. url(r'^jet/', include('jet.urls')), # Django JET URLS
  54. url(r'^admin/', include(admin.site.urls)),
  55. ...
  56. )
  57. * Apply migrations:
  58. .. code:: python
  59. python manage.py migrate jet
  60. Documentation
  61. =============
  62. Incoming