{% import "@SyliusShop/shared/macro/money.html.twig" as money %} {% set tax_included = hookable_metadata.context.order.getTaxIncludedTotal() %} {% set tax_excluded = hookable_metadata.context.order.getTaxExcludedTotal() %}
{% if not tax_included and not tax_excluded %}
{{ money.convertAndFormat(0) }}
{% endif %} {% if tax_excluded %}
{{ money.convertAndFormat(tax_excluded) }}
{% endif %} {% if tax_included %}
{{ money.convertAndFormat(tax_included) }}
{% endif %}
{% if tax_included %}
{{ 'sylius.ui.included_in_price'|trans }}
{% endif %}