summaryrefslogtreecommitdiff
path: root/docs/admin/plugins.rst
diff options
context:
space:
mode:
authorJohannes 'josch' Schauer <josch@debian.org>2020-02-01 01:11:55 +0100
committerJohannes 'josch' Schauer <josch@debian.org>2020-02-01 01:11:55 +0100
commit61b98ca52e8d48a6ad3b4baed5feb4b38ee53804 (patch)
tree9f7ab24aabb0a3b25d125df81fff058ab5e63fe9 /docs/admin/plugins.rst
parent3e49246c2e44159486ea66fed3757cdb4e4d0c50 (diff)
New upstream version 0.16.0+dfsg1
Diffstat (limited to 'docs/admin/plugins.rst')
-rw-r--r--docs/admin/plugins.rst39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/admin/plugins.rst b/docs/admin/plugins.rst
new file mode 100644
index 0000000..4ed9066
--- /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 %}