{% load docca_tags %} {% with method=ep.method|lower %}
{% if method == 'get' %} GET {% elif method == 'post' %} POST {% elif method == 'put' %} PUT {% elif method == 'patch' %} PATCH {% elif method == 'delete' %} DELETE {% else %} {{ ep.method }} {% endif %} {{ ep.path|clean_path }}
View →
{% if ep.subtitle %}

{{ ep.subtitle }}

{% elif ep.description %}

{{ ep.description|truncatewords:30 }}

{% endif %} {% if ep.parameters.exists %}
{% for param in ep.parameters.select_related %} {% if param.required %} * {% endif %} {{ param.name }} {{ param.param_def.param_type }} {% endfor %}
{% endif %}
{% endwith %}