{% load urlize_quoted_links %}

{{ resource_name }}

{{ resource_doc }}

{% autoescape off %}{{ status }} {{ reason }}
{% for key, val in headers.items %}{{ key }}: {{ val }}
{% endfor %}
{{ content|urlize_quoted_links }}{% endautoescape %}    
{% if 'GET' in allowed_methods %}
Read
{% endif %} {% if 'POST' in resource.allowed_methods %}
{% csrf_token %} {{ create_form.as_p }}
{% endif %} {% if 'PUT' in resource.allowed_methods %}
{% csrf_token %} {{ create_form.as_p }}
{% endif %} {% if 'DELETE' in resource.allowed_methods %}
{% csrf_token %}
{% endif %}