{% extends "lingo/invoicing/manager_regie_detail.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Non invoiced lines" %} {% endblock %} {% block appbar %}

{% trans "Non invoiced lines" %}

{% endblock %} {% block content %}
{% for line in object_list %} {% if line.status != 'injected' %} {% endif %} {% endfor %}
{% trans "Event" %} {% trans "Quantity" %} {% trans "Unit amount" %} {% trans "Total amount" %} {% trans "User" %} {% trans "Payer" %} {% trans "Status" %}
{{ line.event_date|date:"d/m/Y" }} - {{ line.label }}
{% if line.status == 'error'%} ({{ line.slug }}) {% else %} ({{ line.slug }}) {% endif %}
{{ line.quantity }} {{ line.unit_amount }} {{ line.total_amount }} {{ line.user_name }} ({{ line.user_external_id }}) {{ line.payer_name}} ({{ line.payer_external_id }}) {% spaceless %} {% if line.status == 'error'%} {% trans "Error" %} {% else %} {% trans "Injected" %} {% endif %} {% endspaceless %} {% if line.status == 'error'%} ({{ line.error_display }}) {% endif %} {% if line.status != 'injected' %}{% trans "see details" %}{% endif %}
{% trans "Pricing data:" %}
{{ line.pricing_data|pprint }}
{% trans "Event:" %}
{{ line.event|pprint }}
{% include "gadjo/pagination.html" %}
{% endblock %}