{% verbatim %}
test stuff: {{ stuff[0] }}.
compte: {{ stuff.length }}.
{{productsFromDB.length}}

{{ c.name }}

Festival: {{activeFestival.name}}
{{activeSelling.length}} produits

Total: {{CurrentSellingTotal()}}€

Rendu: {{ CurrentSellingTotal() - paidAmount }}€

il manque: {{ CurrentSellingTotal() - paidAmount }}€

{% endverbatim %}

Ventes en pause

{% verbatim %}
  • {{ $index }}) {{ list.products.length }} produits, {{ sumOfList(list) }}€
{% endverbatim %}

Ventes récentes

{% if recentSells %}
    {% for s in recentSells %}
  • {{ s.date|date('Y/m/d H:i:s') }} {{ s.amount }}€
  • {% endfor %}
{% else %} aucune {% endif %}