{% extends 'api/doc/base.html' %} {% load markup prettycode staticfiles %} {% block extra_head %} {{ block.super }} {% endblock extra_head %} {% block form_content %}

{{ name }}

{{ doc|restructuredtext }} {% include 'api/doc/endpoints.inc.html' %}

Examples

Request

GET {{ urls.list.example.url }}
Host: {{ SITE.domain }}

Response

{{ urls.list.example.response|prettyjson }}

Request

GET {{ urls.object.example.url }}
Host: {{ SITE.domain }}

Response

{{ urls.object.example.response|prettyjson }}
{% if inlines %} {% for inline in inlines %}

{{ inline.name }}

{{ inline.doc.splitlines.0|restructuredtext }} {% endfor %} {% endif %} {% endblock form_content %} {% block javascript %} {{ block.super }} {% endblock javascript %}