21 lines
478 B
Twig
Executable File
21 lines
478 B
Twig
Executable File
<div class="selling-history">
|
||
{#<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>
|