{% extends "_admin_base.html" %} {% block title %}Polling Logs - {{ source.display_name }} - Admin{% endblock %} {% block page_title %}Polling Logs - {{ source.display_name }}{% endblock %} {% block page_description %}View polling history and error logs for this source{% endblock %} {% block admin_styles %} .error-detail { background: #fff3cd; padding: 12px; border-radius: 6px; margin-top: 8px; font-size: 0.9rem; white-space: pre-wrap; max-height: 200px; overflow-y: auto; } .no-logs { text-align: center; padding: 48px; color: var(--text-secondary); } {% endblock %} {% block admin_content %}
{% if logs %} {% for log in logs %} {% endfor %}
Timestamp Status Posts Found New Posts Updated Posts Error Details
{{ log.poll_time.strftime('%Y-%m-%d %H:%M:%S') }} {% if log.status == 'success' %} Success {% elif log.status == 'error' %} Error {% elif log.status == 'running' %} Running {% else %} {{ log.status }} {% endif %} {{ log.posts_found }} {{ log.posts_new }} {{ log.posts_updated }} {% if log.error_message %}
View Error
{{ log.error_message }}
{% else %} - {% endif %}
{% else %}

No polling logs yet.

Logs will appear here after the first poll.

{% endif %}
← Back to Polling Management
{% endblock %}