{% extends "base.html" %} {% load i18n %} {% load juntagrico.config %} {% block page_title %}

{% trans "Export bookings" %}

{% endblock %} {% block content %} {% for message in messages %} {%if message.tags == "error" %}
{% else %}
{% endif %} {{ message | linebreaks }}
{% endfor %}

{% trans "Bookings Period" %}

{% csrf_token %}
{{ daterange_form.fromdate }} {{ daterange_form.tilldate }}
{% if daterange_form.errors %}
{{ daterange_form.errors }}
{% endif %}

{% trans "Preview" %}

{{ bill_bookings_count }}
{% trans "Bill bookings" %}
{{ payment_bookings_count }}
{% trans "Payment bookings" %}
{% config "bexio_export" as c_bexio_export %} {% if c_bexio_export %}
{% trans "Access token" %}
{% endif %}
{% endblock %}