{% extends "base.html" %} {% block title %}{{ _("Import") }} · {{ account.name }}{% endblock %} {% block heading %}{{ _f("Import into {name}", name=account.name) }}{% endblock %} {% block lede %}

{{ _("Drop in a CSV your broker exported, or the statement PDFs from your bank's mailbox — as many as you like, or a ZIP of them. Each file is recognised by what is in it, so there is nothing to choose — and re-importing what you already loaded is harmless, because every row carries an id.") }}

{% endblock %} {% block content %}
{% if report %}

{{ report.label }}

{% if report.files > 1 %} {% endif %} {% if report.skipped %} {% endif %}
{{ _("Files") }}{{ report.files }}
{{ _("Rows read") }}{{ report.parsed }}
{{ _("Imported") }}{{ report.inserted }}
{{ _("Already had") }}{{ report.duplicates }}
{{ _("No cash movement, skipped") }}{{ report.skipped }}
{% if report.problems %}
{{ _n(report.problems|length, "{n} line could not be read.", "{n} lines could not be read.") }} {{ _("Everything else was imported. These are listed rather than counted so you can see whether they matter:") }}
{% endif %}

{{ _("See the account") }}

{% endif %}

{{ _("Where to get the file") }}

{{ _("Export a period that overlaps what you already imported. Overlap costs nothing and a gap costs you transactions.") }}

{% endblock %}