Files
kupshop/web/common/twig/templates/view/orders.html.twig
2025-08-02 16:30:27 +02:00

20 lines
725 B
Twig

{% extends 'index.html.twig' %}
<twig:block name="content">
<twig:Account>
<twig:block name="account_content">
<h1>{{ view.title }}</h1>
<twig:Account:UserDashboard>
{% if this.activeOrdersCount %}
<twig:Alert type="success" message="Máte {{ this.pluralize(this.activeOrdersCount,
'{} aktivní objednávku', '{} aktivní objednávky', '{} aktivních objednávek') }}."/>
{% endif %}
</twig:Account:UserDashboard>
<twig:Account:OrdersList orders="{{ body.orders }}"/>
{% if body.pager %}
<twig:Pager pager="{{ body.pager }}"/>
{% endif %}
</twig:block>
</twig:Account>
</twig:block>