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

API Endpoints

Explore your DRF API endpoints and their configurations.

{% endblock %} {% block action_buttons %}
Download JSON Download Markdown
{% endblock %} {% block content %}
{% for endpoint in endpoints %}
Endpoint
/{{ endpoint.path }}
Methods
{% for method in endpoint.methods %} {{ method }} {% endfor %}
View: {{ endpoint.view }}
{% if endpoint.serializers %}
Serializer: {{ endpoint.serializers }}
{% endif %} {% if endpoint.model %}
Model: {{ endpoint.model }}
{% endif %}
{% endfor %}
{% endblock %}