{% extends "base.html" %} {% block content %}

Scraper Dashboard ({{ scrapers|length }} scrapers)

{% for scraper in scrapers %}

{{ scraper.name }}

URL: {{ scraper.url }}
Selector Type: {{ scraper.selector_type }}
Selector: {{ scraper.selector[:30] }}{% if scraper.selector|length > 30 %}...{% endif %}
Interval: {{ scraper.interval }} minutes
Last Run: {{ scraper.last_run|format_datetime }}
{% endfor %}
{% endblock %}