2018-04-06 15:54:59 +02:00
|
|
|
|
<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 %}
|
2018-04-06 15:54:59 +02:00
|
|
|
|
</div>
|