mirror of
https://github.com/opnsense/docs.git
synced 2026-04-13 04:36:09 -04:00
needed to better explain documentation for https://github.com/opnsense/plugins/issues/1749
15 lines
623 B
Text
15 lines
623 B
Text
{{ title }}
|
|
{{ title_underline }}
|
|
{% for controller in controllers %}
|
|
.. csv-table:: {{controller.type}} ({{controller.filename}})
|
|
:header: "Method", "Module", "Controller", "Command", "Parameters"
|
|
:widths: 4, 15, 15, 30, 40
|
|
{% for endpoint in controller.endpoints %}
|
|
"``{{endpoint.method}}``","{{endpoint.module}}","{{endpoint.controller}}","{{endpoint.command}}","{{endpoint.parameters}}"
|
|
{%- endfor %}
|
|
{%- if controller.uses %}
|
|
{% for use in controller.uses %}
|
|
"``<<uses>>``", "", "", "", "*{{use.type}}* `{{use.name}} <{{use.link}}>`__"
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{% endfor %}
|