Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

count_order.html.twig 401B

před 3 roky
123456789101112
  1. {% set order_store = order_shop_container.store.setSection(section_current()).setMerchant(merchant_current()) %}
  2. {% set totalOrder = order_store.countValidByUserAllMerchant(entity.instance) %}
  3. {% if totalOrder > 0 %}
  4. <span class="badge badge-success">
  5. {{ totalOrder }} commandes
  6. </span>
  7. {% else %}
  8. <span class="badge badge-secondary">
  9. 0 commandes
  10. </span>
  11. {% endif %}