{% extends "base.html" %} {% block title %}TraceGarden — Requests{% endblock %} {% block content %} {% if not requests %}
🌿

No requests yet

Make an HTTP request to your application and it will appear here.

{% else %}
{% for req in requests %} {% endfor %}
Method Path Status Duration DB HTTP Tasks Started
{{ req.method }} {{ req.path }} {% if req.has_n_plus_one %} N+1 {% endif %} {{ req.status_code }} {{ "%.1f" | format(req.duration_ms) }}ms {% if req.db_query_count > 0 %} {{ req.db_query_count }} {% else %} {% endif %} {% if req.http_call_count > 0 %} {{ req.http_call_count }} {% else %} {% endif %} {% if req.task_count > 0 %} {{ req.task_count }} {% else %} {% endif %} {{ req.started_at.strftime("%H:%M:%S") }}
{% if total_pages > 1 %} {% endif %} {% endif %} {% endblock %}