{% extends 'silk/base/root_base.html' %} {% load silk_inclusion %} {% load silk_filters %} {% load static %} {% block pagetitle %}Silky - Requests{% endblock %} {% block style %} {{ block.super }} {% endblock %} {% block menu %} {% root_menu request %} {% endblock %} {% block filter %} {# Theme toggle is injected by base.html; nothing extra needed here #} {% endblock %} {% block js %} {{ block.super }} {% endblock %} {% block data %}
{# ── Toolbar ── #}
{% csrf_token %}
{% include 'silk/inclusion/sort_chips.html' %}
{# ── Filter bar ── #}
{% csrf_token %} {% include 'silk/inclusion/filter_bar.html' %}
{# ── Results ── #} {% if results %} {% if view_style == "row" %}
{% for silk_request in results %} {% request_summary_row silk_request %} {% endfor %}
Time Method Status Path Duration DB Time Queries
{% else %}
{% for silk_request in results %} {% request_summary silk_request %} {% endfor %}
{% endif %} {# ── Pagination ── #} {% include 'silk/inclusion/pagination.html' %} {% else %}

No requests found

No requests match the current filters. Try adjusting your filters or clearing them.

{% csrf_token %}
{% endif %}
{% endblock %}