caisse-bliss/app/Resources/views/logged/angular/recent.html.twig

21 lines
478 B
Twig
Raw Normal View History

<div class="selling-history">
2018-04-20 12:15:53 +02:00
{#<h4>#}
{#Ventes récentes#}
{#</h4>#}
{#{% if recentSells %}#}
{#<ul>#}
{#{% for s in recentSells %}#}
{#<li>{{ s.date|date('Y/m/d H:i:s') }} {{ s.sellingComment }} | {{ s.amount }}€</li>#}
{#{% endfor %}#}
{#</ul>#}
{#{% else %}#}
{#aucune#}
{#{% endif %}#}
{% verbatim %}
<div ng-repeat="s in recentSelling track by $index">
{{s.id}} )
{{s.amount}}
</div>
{% endverbatim %}
</div>