{% extends "base.html" %} {% block title %}FlowSurgeon — {{ route_method }} {{ route_path }}{% endblock %} {% block topbar %} {% endblock %} {% block content %}
{# ── Filter toggle groups ── #}
{% for s in [('', 'All'), ('2xx', '2xx'), ('3xx', '3xx'), ('4xx', '4xx'), ('5xx', '5xx')] %} {{ s[1] }} {% endfor %}
{% for sv in [('recent', 'Recent'), ('duration', 'Duration'), ('status', 'Status')] %} {{ sv[1] }} {% endfor %}
{{ total_records }} request{% if total_records != 1 %}s{% endif %}
{# ── Request list ── #}
{# ── Pagination ── #} {% if total_pages > 1 %} {% endif %}
{% endblock %}