{% extends "base.html" %} {% set active_page = 'dashboard' %} {% block title %}Failed URLs — {{ project_name }}{% endblock %} {% block content %}

Failed URLs — {{ project_name }}

{{ 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 %}

Retry these

To retry a subset, copy ids from the table into the retry form on the dashboard.

{% for row in rows %} {% endfor %}
IdURLHTTPEndpointAttemptsLast responseUpdated
{{ row['id'] }} {{ row['url'] }} {{ row['last_http_code'] or '—' }} {{ row['last_endpoint'] or '—' }} {{ row['attempt_count'] }} {{ row['last_response_excerpt'] or '—' }} {{ row['updated_at'] }}
{% else %}

No failed URLs for this project.

{% endif %} {% endblock %}