{% extends "ui/templates/base/layout.html" %} {% block content %}

My Analysis Jobs

Queued, processing, completed and failed bank-statement analyses.

New Analysis
{% for item in jobs %}{% else %}{% endfor %}
SubmittedBankFilesStatusEstimate / ExpiryAction
{{ item.submitted_at }}{{ item.selected_bank|replace('_',' ')|title }}{{ item.file_count }}{{ item.status|title }}{% if item.queue_position %}
Queue position {{ item.queue_position }}
{% endif %}
{% if item.status in ['queued','processing'] %}{{ item.estimated_wait }}{% elif item.status == 'completed' %}Workbook and statements available until {{ item.expires_at or '24 hours' }}{% elif item.status == 'failed' %}Statements retained until {{ item.expires_at or '24 hours' }}{% else %}{{ item.error_message[:80] }}{% endif %}
View{% if item.download_ready %}Download Excel{% endif %}{% for file in item.original_files %}Statement {{ file.index }}{% endfor %}{% if item.status != 'processing' %}
{% endif %}
No analysis jobs yet.
{% endblock %}