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. Beta
  16. ====
  17. Current version is still in beta phase. Use it at your own risk (though may be already enough workable).
  18. License
  19. =======
  20. Django JET is licensed under a
  21. Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
  22. See online version of this license here:
  23. https://creativecommons.org/licenses/by-nc-sa/4.0/
  24. Installation
  25. ============
  26. * Download and install latest version of Django JET:
  27. .. code:: python
  28. pip install django-jet
  29. # or
  30. easy_install django-jet
  31. * Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
  32. .. code:: python
  33. INSTALLED_APPS = (
  34. ...
  35. 'jet',
  36. 'django.contrib.admin',
  37. )
  38. * Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for related–lookups and autocompletes):
  39. .. code:: python
  40. urlpatterns = patterns(
  41. '',
  42. url(r'^jet/', include('jet.urls')), # Django JET URLS
  43. url(r'^admin/', include(admin.site.urls)),
  44. ...
  45. )
  46. * Apply migrations:
  47. .. code:: python
  48. python manage.py migrate jet
  49. Documentation
  50. =============
  51. Incoming
  52. Screenshots
  53. ===========
  54. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen1.png
  55. :alt: Screenshot #1
  56. :align: center
  57. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen2.png
  58. :alt: Screenshot #1
  59. :align: center
  60. .. image:: https://raw.githubusercontent.com/geex-arts/jet/static/screen3.png
  61. :alt: Screenshot #1
  62. :align: center