{% load i18n %} {% for line in object_list %}
  • {% if line.pool %} {% url 'lingo-manager-invoicing-pool-journal' regie_pk=regie.pk pk=line.pool.campaign_id pool_pk=line.pool.pk as journal_url %} #{{ line.pk }} {{ line.user_name }} ({{ line.user_external_id }}) {% else %} #{{ line.pk }} {{ line.user_name }} ({{ line.user_external_id }}) {% endif %} - {{ line.event_date|date:"d/m/Y" }} - {{ line.label }} ({{ line.total_amount }})
  • {% endfor %} {% if not pool.draft %} {% for invoice_payment in invoice_payments %}
  • {{ invoice_payment.created_at|date:"DATETIME_FORMAT" }} - {% trans "Payment type:" %} {{ invoice_payment.payment.get_payment_type_display }} - {% trans "Amount:" %} {{ invoice_payment.amount }}€
  • {% endfor %} {% if invoice.paid_amount %}
  • {% trans "Paid amount:" %} {{ invoice.paid_amount }}€
  • {% endif %} {% if invoice.remaining_amount %}
  • {% trans "Remaining amount:" %} {{ invoice.remaining_amount }}€
  • {% endif %} {% endif %}