{% extends 'base.html' %} {% load static %} {% load rest_framework %} {% block title %} API | HAWC {% endblock %} {% block extrastyle %} {% endblock %} {% block main_content %}
{% block breadcrumbs %} {% endblock %}
{% if 'GET' in allowed_methods %}
GET
{% endif %} {% if options_form %}
{% csrf_token %}
{% endif %} {% if delete_form %}
{% csrf_token %}
{% endif %}
{{ description }}
{{ request.method }} {{ request.get_full_path }}
                
HTTP {{ response.status_code }} {{ response.status_text }}{% autoescape off %} {% for key, val in response.items %}{{ key }}: {{ val|urlize_quoted_links }} {% endfor %}
{{ content|urlize_quoted_links }}
{% endautoescape %}
{% if response.status_code != 403 %} {% if post_form %}
{% with form=post_form %}
{% csrf_token %} {{ post_form }}
{% endwith %}
{% endif %} {% if put_form or raw_data_put_form or raw_data_patch_form %}
{% 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 footer %} {% endblock %} {% block extrajs %} {% endblock %}