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

28 lines
1.3 KiB
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 %}
{% if this.userInfo %}
<twig:Account:UserDashboard:UserInfo userInfo="{{ this.userInfo }}"/>
{% endif %}
{% if this.bonusPoints %}
<twig:Account:UserDashboard:BonusPoints bonusPoints="{{ this.bonusPoints }}" show_link="{{ true }}"/>
{% endif %}
{% if this.priceLevel %}
<twig:Account:UserDashboard:PriceLevel priceLevel="{{ this.priceLevel }}"/>
{% endif %}
</twig:Account:UserDashboard>
<p class="title-default">{{ 'last.orders'|trans([], 'users') }}</p>
<twig:Account:OrdersList orders="{{ body.orders }}"/>
<a href="{{ path('orders') }}" class="btn btn-primary">{{ 'order.histories'|trans([], 'users') }}</a>
</twig:block>
</twig:Account>
</twig:block>