{% load i18n %}
Status:
{% if enabled %}Enabled{% else %}Disabled{% endif %}
Profiles:
{{ count }}
Size:
{{ total_size }}
Directory:
{{ directory }}

Note: The ten most recent profiles are kept, and the remainder are removed.

{% if not enabled %}
Set PROFILING_ENABLED=True to enable profiling
{% endif %} {% if profiles %} {% for profile in profiles %} {% endfor %}
Method Path Duration Time Size View Delete
{{ profile.method }} {{ profile.path }} {{ profile.duration }} {{ profile.modified }} {{ profile.size }} View Delete
{% else %}
No profiles found in {{ directory }}
{% endif %}