{% extends 'base.html.twig' %} {% block title %}{% trans %} My dashboard | Promotip {% endtrans %}{% endblock %} {% block body %}
{{ form_start(form) }}
{{ form_row(form.month) }}
{{ form_row(form.paymentStatus) }}
{{ form_widget(form) }} {{ form_end(form) }}
{% if 'ROLE_ROOT' in app.user.roles and invoices|length > 0 %} Download alle facturen {% endif %}
{% if invoices|length > 0 %}
{% for invoice in invoices %} {% endfor %}
UUID Factuurnummer Datum Amount Status
{% if invoice.status == 0 %} {% endif %} {{ invoice.user.id }} {{ get_front_invoice_number_payout(invoice) }} {{ invoice.createdAt|date("d/m/Y") }} {{ invoice.totalAmount }} € {% if invoice.status == 0 %} Unpaid {% else %} Paid ({{ invoice.paidAt|date("d/m/Y") }}) {% endif %} Factuur downloaden
{% else %}
Geen factuur gevonden
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}