{% extends "site/layout/base_workspace.html" %} {% load com %} {% load i18n %} {% block title %} {% blocktrans %}API Documentation{% endblocktrans %} {% endblock %} {% block head %} {% endblock %} {% block content %}
{{ doc.handler.desc }}
{{ doc.doc|default:"" }}
Endpoint: {{ doc.handler.endpoint }}
Method: {% for meth in doc.allowed_methods %}{{ meth }}{% if not forloop.last %}, {% endif %}{% endfor %}
Args: {% if doc.handler.args %}{{ doc.handler.args|safe }}{% else %}None{% endif %}