{% include 'header.html' %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% endfor %}
{% endif %} {% endwith %}
{{ form.hidden_tag() }}
File Uploads
{{ form.filename.label(class="form-label") }} {{ form.filename(class="form-control") }}
Upload your CSV file containing the exported bank account history here.
{{ form.config.label(class="form-label") }} {{ form.config(class="form-control") }}
Upload your configuration file here, or the default configuration will be used.
Filters
{{ form.start_date.label(class="form-label") }} {{ form.start_date(class="form-control") }}
Filter results starting from this date.
{{ form.end_date.label(class="form-label") }} {{ form.end_date(class="form-control") }}
Filter results up until this date.
{{ form.filter.label(class="form-label") }} {{ form.filter(class="form-control") }}
Filter by category. (default = 'category')
Advanced settings
{{ form.verbose(class="form-check-input") }} {{ form.verbose.label(class="form-check-label") }}
Enable detailed logging in the backend service's console.
{{ form.no_currency_format(class="form-check-input") }} {{ form.no_currency_format.label(class="form-check-label") }}
Select this option to exclude currency symbols in the exported CSV. You can format the cells in your spreadsheet application instead.