{% comment %} {% endcomment %}{% load i18n quickapi_base %}

{% trans 'Methods' %}

{% if test_method_doc %}

quickapi.test

{{ test_method_doc|formatdoc|safe }}
{% endif %} {% regroup methods by namespace as namespace_list %} {% for ns in namespace_list %} {% if ns.grouper %}

{% trans 'Namespace' %} {{ ns.grouper }}

{% endif %} {% for m in ns.list %}

{{ m.name }}

{% if m.doc %}
{{ m.doc|formatdoc|safe }}
{% else %}

{% trans 'no description available' %}

{% endif %}
{% endfor %} {% endfor %}