{% extends "admin/base_site.html" %} {% load static %} {% block extrastyle %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Discover Unsecured Endpoints

Filter Options

{% if endpoints %}
Found {{ endpoints|length }} endpoint(s)
{% csrf_token %}
{% for endpoint in endpoints %}
{{ endpoint.url_pattern }} {{ endpoint.http_methods }}
View: {{ endpoint.view_name }} {% if endpoint.app_name %}({{ endpoint.app_name }}){% endif %}
{% if endpoint.serializer_class %}
Serializer: {{ endpoint.serializer_class }}
{% endif %}
{% endfor %}
{% else %}
✅ No endpoints found matching the selected filters. {% if unsecured_only %}All endpoints are secured!{% endif %}

{% endif %}
{% endblock %}