diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-01-06 08:05:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-06 08:05:29 +0000 |
| commit | 1d86d0054ff29344f93943896847c12f51e1a9e0 (patch) | |
| tree | 83a1cd1d16a73f25160b7d260b38ab649236637d /docs/admin/plugins.rst | |
| parent | 70f7142824cc44afddb5704fd59e3a4194f3dc0e (diff) | |
| parent | 17b6faa4c3c1cf14a327f4a3538fc70dce08b756 (diff) | |
Merge branch 'master' into bug/oscar-theme
Diffstat (limited to 'docs/admin/plugins.rst')
| -rw-r--r-- | docs/admin/plugins.rst | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/admin/plugins.rst b/docs/admin/plugins.rst new file mode 100644 index 000000000..4ed9066fd --- /dev/null +++ b/docs/admin/plugins.rst @@ -0,0 +1,39 @@ +.. _plugins generic: + +=============== +Plugins builtin +=============== + +.. sidebar:: Further reading .. + + - :ref:`dev plugin` + +Configuration defaults (at built time): + +:DO: Default on + +.. _configured plugins: + +.. jinja:: webapp + + .. flat-table:: Plugins configured at built time (defaults) + :header-rows: 1 + :stub-columns: 1 + :widths: 3 1 9 + + * - Name + - DO + - Description + + JS & CSS dependencies + + {% for plgin in plugins %} + + * - {{plgin.name}} + - {{(plgin.default_on and "y") or ""}} + - {{plgin.description}} + + {% for dep in (plgin.js_dependencies + plgin.css_dependencies) %} + | ``{{dep}}`` {% endfor %} + + {% endfor %} |