{% extends "lingo/invoicing/manager_pool_detail.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Journal" %} {% endblock %} {% block appbar %}

{% if pool.success_count %}{{ pool.success_count }}{% endif %} {% if pool.warning_count %}{{ pool.warning_count }}{% endif %} {% if pool.error_count %}{{ pool.error_count }}{% endif %} {{ pool.created_at|date:"DATETIME_FORMAT" }}

{% if pool.status != 'registered' and pool.status != 'running' %} {% trans "Delete" %} {% endif %} {% endblock %} {% block content %}
{% if pool.status == 'failed' %}

{% trans "Error while running pool." %}

{% if pool.exception %}
{{ pool.exception }}
{% endif %}
{% endif %}
{% trans "Journal Filtering" %}
{{ filterset.form.as_p }}
{% for line in object_list %} {% include 'lingo/invoicing/manager_line_detail_fragment.html' %} {% endfor %}
{% trans "PK" %} {% trans "Invoice number" %} {% trans "Event" %} {% trans "Amount" %} {% trans "Quantity" %} {% trans "User" %} {% trans "Payer" %} {% trans "Status" %}
{% trans "Pricing data:" %}
{{ line.pricing_data|pprint }}
{% trans "Event:" %}
{{ line.event|pprint }}
{% trans "Booking:" %}
{{ line.booking|pprint }}
{% include "gadjo/pagination.html" %}
{% endblock %}