{% load i18n simpelcore_tags %} {% if items.count %}
{% regroup items.all by group_verbose as group_list %} {% for group in group_list %} {% for item in group.list %} {% endfor %} {% endfor %}
{% trans "#" %} {% trans "Item" %} {% trans "Price" %} {% trans "Quantity" %} {% trans "Total" %}
{{ group.grouper }}
{{ item.product.inner_id }} {{ item.product.name }} {{ item.subtotal|currency }} {{ item.quantity }} {{ item.product.unit }} {{ item.total|currency }}
{% trans "Total Order" %} {{ cart.total_order|currency }}
{% else %}
{% trans "Please select service group !" %}
{% endif %}