bee_hotel-1.x-dev/modules/beehotel_vertical/templates/vertical-order-item.html.twig
modules/beehotel_vertical/templates/vertical-order-item.html.twig
<div{{ attributes.addClass(classes) }}>
{% if show_text == TRUE %}
<div>
<a href='/admin/commerce/orders/{{ order_id }}'>{{ mail }} </a>
<a href='/admin/commerce/orders/{{ order_id }}' class='small'>{{ order_number }}</a>
<span>{{ name }}</span><span>{{ surname }}</span>
<div class='payments'>
{% for key, payment in payments %}
<div><span class='bee_hotel_vertical payment small' title='Paid on {{ payment.date|e }}'><span class='amount'>{{ payment.amount|e }}€</span></span></div>
{% endfor %}
{# @todo fix i18 for balance #}
{% if balance != '0,00' %}
<div><span class='bee_hotel_vertical balance small' title='Balance' ><span class=''>{{ balance|e }}€</span></span></div>
{% else %}
<div><span class='bee_hotel_vertical balanced small' title='Balanced' >✔ </span></div>
{% endif %}
</div>
</div>
<div class='comments'>{{ comments }}</div>
<div class='extra'>{{ extra }}</div>
{% endif %}
{# we need space below to propertly close no-text day of checkout #}
</div>
