{% load urlize_quoted_links %}{% load add_query_param %} API - {{ resource.name }}

{{ resource.name }}

{{ resource.description|linebreaksbr }}

{{ resource.resp_status }} {{ resource.resp_status_text }}{% autoescape off %}
{% for key, val in resource.resp_headers.items %}{{ key }}: {{ val|urlize_quoted_links }}
{% endfor %}
{{ content|urlize_quoted_links }}    
{% endautoescape %} {% if 'read' in resource.allowed_operations %}
Read
{% endif %} {% if 'create' in resource.allowed_operations %}
{% csrf_token %} {% with resource.form_instance as form %} {% for field in form %}
{{ field.label_tag }}: {{ field }} {{ field.help_text }} {{ field.errors }}
{% endfor %} {% endwith %}
{% endif %} {% if 'update' in resource.allowed_operations %}
{% csrf_token %} {% with resource.form_instance as form %} {% for field in form %}
{{ field.label_tag }}: {{ field }} {{ field.help_text }} {{ field.errors }}
{% endfor %} {% endwith %}
{% endif %} {% if 'delete' in resource.allowed_operations %}
{% csrf_token %}
{% endif %}