mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
15 lines
404 B
Twig
Executable file
15 lines
404 B
Twig
Executable file
{% verbatim %}
|
|
<div class="selling-on-hold">
|
|
<h4>
|
|
Ventes en pause
|
|
</h4>
|
|
<ul>
|
|
<li ng-repeat="list in pausedSellings track by $index"
|
|
ng-click="setBackPausedSelling(list, $index)">
|
|
{{ $index }}) {{ list.products.length }} produits, <strong>
|
|
{{ sumOfList(list) }}€ </strong>
|
|
</li>
|
|
</ul>
|
|
<hr>
|
|
</div>
|
|
{% endverbatim %}
|