<aclass="btn btn-primary js-tooltip"href='{{ request.get_full_path }}'rel="nofollow"title="Do a GET request on the {{ name }} resource">GET</a>
{% for format in available_formats %}
{% with FORMAT_PARAM|add:"="|add:format as param %}
<aclass="btn js-tooltip"href='{{ request.get_full_path|add_query_param:param }}'rel="nofollow"title="Do a GET request on the {{ name }} resource with the format set to `{{ format }}`">{{ format }}</a>
<aclass="btn js-tooltip format-option"href='{{ request.get_full_path|add_query_param:param }}'rel="nofollow"title="Do a GET request on the {{ name }} resource with the format set to `{{ format }}`">{{ format }}</a>
{% csrf_token %}
{% endwith %}
{{ put_form.non_field_errors }}
{% endfor %}
{% for field in put_form %}
<divclass='form-row'>
{{ field.label_tag }}
{{ field }}
<spanclass='help'>{{ field.help_text }}</span>
{{ field.errors }}
</div>
</div>
{% endfor %}
<buttonclass="btn btn-primary js-tooltip"title="Do a PUT request on the {{ name }} resource">PUT</button>
</fieldset>
</fieldset>
</form>
</form>
{% endif %}
{% endif %}
{% if 'DELETE' in allowed_methods and api_settings.FORM_METHOD_OVERRIDE %}