{% extends "base.html" %} {% block title %}Failed — Libris{% endblock %} {% block content %}

Failed Queue

{% if records %} {{ records|length }} {% endif %}
{% if error %}
{{ error }}
{% endif %} {% if not records and not error %}
No failed files
Everything processed without errors.
{% else %}
{% for r in records %} {% endfor %}
# File Error Type Age Actions
{{ loop.index }}
{{ r.current_path.split('/')[-1] }}
{% if not r._exists %}
file missing from disk
{% endif %}
{% if r.error_msg %}
{{ r.error_msg[:120] }}
{% else %} {% endif %}
{% if r.media_type == 'audiobook' %} audio {% else %} ebook {% endif %} {{ r._age }}
{% if r._exists %} {% else %} {% endif %}
Tip: Recover moves the file back to review/ so it can be rematched and re-imported. Remove deletes the file from disk permanently.
{% endif %}
{% endblock %}