{% extends 'base.html' %} {% block title %}Erfassungsstand · imgsrx{% endblock %} {% block content %}

Gespeicherte Warteschlange.

Quelle {{ source.domain }} {% if nsfw %}NSFW{% endif %} · {{ total }} {{ 'Seiten' if kind == 'page' else 'Sitemaps' if kind == 'sitemap' else 'Bildfundstellen' }} in dieser Auswahl.

Zur Quelle und zum Fortschritt →
{% for entry in entries %}{% set shown_url = current_request_url(source, entry.url) if kind == "page" else entry.url %}

{{ shown_url }} ↗

{{ 'Einem Lauf zugeteilt' if entry.status == 'queued' else state_label(entry.status) }} · Tiefe {{ entry.depth }}{% if source.max_depth is not none and entry.depth > source.max_depth %} · jenseits der aktuellen Tiefengrenze{% endif %}

{% if entry.payload.get("page_type") %}

{{ page_types.get(entry.payload.page_type, entry.payload.page_type) }}{% if entry.payload.get("position") not in [none, "1", "0"] %} · Seite / Position {{ entry.payload.position }}{% endif %}{% if entry.payload.get("parent_url") %} · Entdeckt auf ↗{% endif %}

{% endif %}

Priorität {{ entry.priority }} · {{ entry.priority_reason }} · Zuletzt geprüft: {{ timestamp(entry.last_checked_at) }}

{% if entry.error_type %}

{{ state_label(entry.error_type) }}

{% endif %}{% if entry.run_id %}Zugehöriger Lauf →{% endif %}
{% else %}

Keine Aufgaben in dieser Auswahl.

{% endfor %} {% endblock %}