{% load i18n static rest_framework rest_wind %} {% block head %} {% block meta %} {% endblock %} {% block title %}{% if name %}{{ name }} -{% endif %} Django REST framework{% endblock %} {% block highlight_theme %} {% endblock %} {% block styles %} {% endblock %} {% endblock %}
{% block content %}
{% block breadcrumbs %} {% endblock %}

{{ name }}

{% if paginator %} {% endif %}
{{ request.method }} {{ request.get_full_path }}
HTTP {{ response.status_code }} {{ response.status_text }}
{% for key, val in response_headers|items %}
{{ key }}: {{ val|urlize }}{% endfor %}{{ content|urlize }}
{% block request_forms %} {% if 'GET' in allowed_methods %}
{% if api_settings.URL_FORMAT_OVERRIDE %}
{% endif %}
{% endif %} {% endblock %}
{% if options_form %}
{% endif %}
{% if display_edit_forms %}
{% if post_form or raw_data_post_form %}
{% with form=post_form %}
{% csrf_token %}{{ post_form }}
{% endwith %}
{% with form=raw_data_post_form %}
{% include "rest_framework/raw_data_form.html" %}
{% endwith %}
{% endif %} {% if put_form or raw_data_put_form or raw_data_patch_form %}
{% with form=post_form %}
{{ put_form }}
{% endwith %}
{% with form=raw_data_put_or_patch_form %}
{% include "rest_framework/raw_data_form.html" %}
{% if raw_data_put_form %}
{% endif %} {% if raw_data_patch_form %}
{% endif %}
{% endwith %}
{% endif %}
{% endif %}
{% endblock %}
{% block drawer_branding %} {% endblock %}
{% block package %} {% endblock %}
{% include 'rest_framework/components/dialogs.html' %}