mirror of
https://github.com/opnsense/docs
synced 2024-10-30 21:20:20 +00:00
03a84977e9
needed to better explain documentation for https://github.com/opnsense/plugins/issues/1749
16 lines
623 B
Plaintext
16 lines
623 B
Plaintext
{{ 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 %}
|