{% extends "conneg/base.html" %} {% block title %}Not Acceptable{% endblock %} {% block content %}

Not Acceptable

Of the media types specified in your request, none is supported as a response type. This resource supports the following response formats:

{% for renderer in error.available_renderers %} {% endfor %}
Format name Format identifier Associated mimetypes
{{ renderer.name }} {{ renderer.format }} {% for mimetype in renderer.mimetypes %}{{ mimetype }}{% if not forloop.last %}, {% endif %}{% endfor%}

You can specify a media type using the Accept header, or by providing a {{ error.format_parameter_name }} parameter in the query string or request body, containing a single — or comma-separated list of — format identifiers.

For this request, you provided the following Accept header:

{{ error.accept_header }}

The site interpreted this to mean that we should attempt to return serializations in the following order:

    {% for mediatype in error.accept_header_parsed %}
  1. {{ mediatype }}
  2. {% endfor %}
{% endblock %}