plugins.rst 716 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .. _plugins generic:
  2. ===============
  3. Plugins builtin
  4. ===============
  5. .. sidebar:: Further reading ..
  6. - :ref:`dev plugin`
  7. Configuration defaults (at built time):
  8. :DO: Default on
  9. .. _configured plugins:
  10. .. jinja:: webapp
  11. .. flat-table:: Plugins configured at built time (defaults)
  12. :header-rows: 1
  13. :stub-columns: 1
  14. :widths: 3 1 9
  15. * - Name
  16. - DO
  17. - Description
  18. JS & CSS dependencies
  19. {% for plgin in plugins %}
  20. * - {{plgin.name}}
  21. - {{(plgin.default_on and "y") or ""}}
  22. - {{plgin.description}}
  23. {% for dep in (plgin.js_dependencies + plgin.css_dependencies) %}
  24. | ``{{dep}}`` {% endfor %}
  25. {% endfor %}