{% extends "lingo/invoicing/manager_regie_detail.html" %} {% load i18n %} {% block page-title-extra-label %}{% trans "Non invoiced lines" %} | {{ block.super }}{% endblock %} {% 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 "Amount" %} {% trans "User" %} {% trans "Payer" %} {% trans "Status" %}
{{ line.event_date|date:"d/m/Y" }} - {{ line.label }}
{% if line.status == 'error'%} ({{ line.slug }}) {% if line.event.agenda %}
{% trans "see agenda" %} {% if line.chrono_event_url %}- {% trans "see event" %}{% endif %} {% endif %} {% else %} ({{ line.slug }}) {% endif %}
{{ line.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' %} {% endif %}
{% trans "Pricing data:" %}
{{ line.pricing_data|pprint }}
{% trans "Event:" %}
{{ line.event|pprint }}
{% include "gadjo/pagination.html" %}
{% endblock %} {% block sidebar %} {% endblock %}