config_file.rst 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Config file
  2. ===========
  3. Options available in settings.py:
  4. JET_THEME
  5. ---------
  6. Django JET allows you to change default theme. This feature is mainly used for customizing color schemes rather than
  7. making absolutely different themes. This option in fact make Django load different css styles.
  8. Possible built-in themes are:
  9. * default
  10. * green
  11. .. note:: More themes are incoming in future.
  12. To change theme use parameter:
  13. .. code:: python
  14. JET_THEME = 'default'
  15. CUSTOM JET_THEME
  16. ----------------
  17. You are free to add your own color schemes by adding new folder to **/static/jet/css/themes/**.
  18. You can use **/jet/static/jet/css/themes/green/** folder as an example (available in Django JET repository).
  19. _variables.scss contains **all** used colors. You'll have to compile all .scss files in theme directory
  20. to start using your own theme.
  21. JET_INDEX_DASHBOARD
  22. -------------------
  23. Sets which dashboard class will be used for rending admin index dashboard. Allows you to create
  24. your own dashboard with custom modules with pre-installed layout.
  25. .. code:: python
  26. JET_INDEX_DASHBOARD = 'jet.dashboard.DefaultIndexDashboard'
  27. JET_APP_INDEX_DASHBOARD
  28. -----------------------
  29. Same as **JET_INDEX_DASHBOARD**, but for application pages
  30. .. code:: python
  31. JET_APP_INDEX_DASHBOARD = g'jet.dashboard.DefaultAppIndexDashboard'