{% if title is defined -%} {{title}} {% else -%} Documentation {% endif -%}
{% for doc in autodoc %}
{{doc.rule|escape}}
{% for method in doc.methods -%} {% if method == 'GET' and doc.args == ['None'] %}
{{method}}
{% else %}
{{method}}
{% endif %} {% endfor %}
{% for arg in doc.args %}
{{arg}}
{{doc.defaults[arg]}}
{% endfor %}
{{doc.docstring|urlize|nl2br}}
{% endfor %}