{% extends 'dashboard.html.twig' %} {% block title %}{% trans %} My dashboard | Promotip {% endtrans %}{% endblock %} {% block dashboard %} {% if invoices|length > 0 %} {% for invoice in invoices %} {% endfor %}
Factuurnummer Datum
{{ get_front_invoice_number(invoice) }} {{ invoice.invoiceDate|date("d/m/Y") }} Factuur downloaden
{% else %}
No invoice found
{% endif %} {% endblock %}