{% extends "appbuilder/base.html" %} {% block head_css %} {{super()}} {% endblock %} {% block content %}

{% if title is defined -%} {{title}} {% else -%} API Documentation {% endif -%}

All Group

Group: {{group}}

{% for doc in autodoc %}
REST API: {{doc.rule|escape}}
{% for method in doc.methods -%}
  • {{method}}
{% endfor %}
{% for arg in doc.args -%}
  • {{arg}} {{doc.defaults[arg]}}
  • {% endfor %}
    {{ set }}

    {{doc.docstring|urlize}}

    {% endfor %}
    {% endblock %}