{% extends "base.html" %} {% set active_page = 'dashboard' %} {% block title %}Failed URLs — {{ project_name }}{% endblock %} {% block content %}
{{ failed_total }} failed URL{{ '' if failed_total == 1 else 's' }}. {% if failed_total > rows | length %}Showing the {{ rows | length }} most recent — export the CSV for the full list.{% endif %}
{% if rows %}| Id | URL | HTTP | Endpoint | Attempts | Last response | Updated |
|---|---|---|---|---|---|---|
{{ row['id'] }} |
{{ row['url'] }} | {{ row['last_http_code'] or '—' }} | {{ row['last_endpoint'] or '—' }} | {{ row['attempt_count'] }} | {{ row['last_response_excerpt'] or '—' }} | {{ row['updated_at'] }} |
No failed URLs for this project.