{% extends "gui/base.html" %} {% load staticfiles %} {% load i18n %} {% load rest_framework %} {% block custom_style %} {% endblock %} {% block bootstrap_theme %} {% endblock %} {% block script %} {% endblock %} {% block content %} {% comment "Old description" %} {% endcomment %} {% if name %}{{ name }}{% endif %} {% block description %} {% if not description == "" %} {% endif %} {% endblock %} {% block breadcrumbs %} Home {% for breadcrumb_name, breadcrumb_url in breadcrumblist %} {% if forloop.last %} {{ breadcrumb_name }} {% else %} {{ breadcrumb_name }} {% endif %} {% endfor %} {% endblock %} {% if 'GET' in allowed_methods %} {% if api_settings.URL_FORMAT_OVERRIDE %} GET {% for format in available_formats %} {{ format }} {% endfor %} {% else %} GET {% endif %} {% endif %} {% if options_form %} OPTIONS {% endif %} {% if delete_form %} DELETE Are you sure you want to delete this {{ name }}? {% endif %} {% if filter_form %} {% trans "Filters" %} {% endif %} {% if paginator %} {% get_pagination_html paginator %} {% endif %} {{ request.method }} {{ request.get_full_path }} HTTP {{ response.status_code }} {{ response.status_text }}{% autoescape off %} {% for key, val in response_headers.items %}{{ key }}: {{ val|break_long_headers|urlize_quoted_links }} {% endfor %} {{ content|urlize_quoted_links }}{% endautoescape %} {% if display_edit_forms %} {% if post_form or raw_data_post_form %} {% if post_form %} HTML form Raw data {% endif %} {% if post_form %} {% with form=post_form %} {% csrf_token %} {{ post_form }} POST {% endwith %} {% endif %} {% with form=raw_data_post_form %} {% include "rest_framework/raw_data_form.html" %} POST {% endwith %} {% endif %} {% if put_form or raw_data_put_form or raw_data_patch_form %} {% if put_form %} HTML form Raw data {% endif %} {% if put_form %} {{ put_form }} PUT {% endif %} {% with form=raw_data_put_or_patch_form %} {% include "rest_framework/raw_data_form.html" %} {% if raw_data_put_form %} PUT {% endif %} {% if raw_data_patch_form %} PATCH {% endif %} {% endwith %} {% endif %} {% endif %} {% if filter_form %} {{ filter_form }} {% endif %} {% endblock %}
{{ request.method }} {{ request.get_full_path }}
HTTP {{ response.status_code }} {{ response.status_text }}{% autoescape off %} {% for key, val in response_headers.items %}{{ key }}: {{ val|break_long_headers|urlize_quoted_links }} {% endfor %} {{ content|urlize_quoted_links }}