{% extends "drf_inspector/base.html" %} {% block page_header %}

Views Explorer

Explore all your DRF views and their configurations.

{% endblock %} {% block action_buttons %}
Download JSON Download Markdown
{% endblock %} {% block content %}
{% for item in views %}

{{ item.view }}

Path
/{{ item.path }}
Methods
{% for method in item.methods %} {{ method }} {% endfor %}
{% if item.serializer %}
Serializer: {{ item.serializer }}
{% endif %} {% if item.model %}
Model: {{ item.model }}
{% endif %}
Permissions: {% for permission in item.permissions %} {{ permission }} {% empty %} None {% endfor %}
Authentication: {% for auth in item.authentication %} {{ auth }} {% empty %} None {% endfor %}
{% if item.pagination %}
Pagination: {{ item.pagination }}
{% endif %}
{% endfor %}
{% endblock %}