{% extends "base.html" %} {% block title %}Bug Reports — Timmy Time{% endblock %} {% block content %}

BUG REPORTS

Automatic error feedback loop — errors are captured, deduped, and filed here.

{{ total }}
TOTAL
{% for status_name, count in stats.items() %}
{{ count }}
{{ status_name | replace("_", " ") | upper }}
{% endfor %}
{% if bugs %} {% for bug in bugs %}
{{ bug.title | e }}
{{ bug.status.value | replace("_"," ") | upper }} {{ bug.priority.value | upper }}
{% if bug.description %}
Stack trace & details
{{ bug.description | e }}
{% endif %}
{{ bug.created_at[:19].replace("T", " ") }} UTC
{% endfor %} {% else %}

No bug reports found.

The system is running clean.

{% endif %}
{% endblock %}