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

Query Optimization Detector

Identify and optimize database queries in your views.

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

{{ item.view }}

/{{ item.path }}
{% if item.warnings %}
NEEDS OPTIMIZATION
{% else %}
OPTIMIZED
{% endif %}
{% if item.warnings %}
    {% for warning in item.warnings %}
  • {{ warning }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}