{% extends "base.html" %} {% block title %}Download — abn-combined{% endblock %} {% block content %}

Download statements

Trigger ABN AMRO or PayPal downloads. Jobs run in the background; status updates every 2 s.

{# ── ABN AMRO card ─────────────────────────────────────────────────── #}
ABN AMRO
{% if not playwright_available %} {% else %}

A headed Chromium window will open. Authenticate with the ABN AMRO app when prompted.

{% if abn_job and not abn_job.is_terminal() %} {% else %} {% endif %}
{% endif %}
{% if abn_job %} {% set source = "abn" %} {% set job = abn_job %} {% include "_download_status.html" %} {% endif %}
{# ── PayPal card ────────────────────────────────────────────────────── #}
PayPal

Start Chrome with remote debugging before clicking the button:

{{ chrome_launch_command }}
Default: http://127.0.0.1:9222
{% if paypal_job and not paypal_job.is_terminal() %} {% else %} {% endif %}
{% if paypal_job %} {% set source = "paypal" %} {% set job = paypal_job %} {% include "_download_status.html" %} {% endif %}
{% endblock %}