{% extends '@SyliusShop/layout.html.twig' %} {% block content %}

{% set lastPayment = order.payments.last() %}
{{ 'sylius.ui.thank_you'|trans }}
{{ 'sylius.ui.placed_an_order'|trans }}

{{ sylius_template_event('sylius.shop.order.thank_you.after_message', {'order': order}) }} {% if lastPayment != false %} {% if lastPayment.method.instructions is not null %}
{{ lastPayment.method.instructions }}
{% endif %} {% endif %} {% if order.customer.user is not null %} {{ 'sylius.ui.view_order'|trans }} {% else %} {% if lastPayment.state != 'completed' %} {{ 'sylius.ui.change_payment_method'|trans }} {% endif %} {{ 'sylius.ui.create_an_account'|trans }} {% endif %}
{% endblock %}