{% extends "base.html" %} {% block content %}
🎉

{{ t_shop('order_success', 'Comandă Înregistrată cu Succes!') }}

{{ t_shop('order_success_msg', 'Îți mulțumim pentru comandă! Numărul comenzii tale este') }} #{{ order.order_number }}.

{{ t_shop('order_details', '📦 Detalii Comandă') }}
{{ t_shop('customer', 'Client') }}: {{ order.customer_name }}
{{ t_shop('email', 'E-mail') }}: {{ order.customer_email }}
{{ t_shop('payment_method_label', 'Metodă Plată') }}: {{ order.payment_method }}
{{ t_shop('payment_status', 'Status Plată') }}: {% if order.payment_status == 'paid' %} {{ t_shop('paid', 'Plătit') }} {% else %} {{ t_shop('pending', 'În așteptare') }} {% endif %}
{{ t_shop('ordered_products', 'Produse Comandate:') }}
    {% for item in order.order_items %}
  • {{ item.product_title }} (x{{ item.quantity }})
    {{ "%.2f"|format(item.unit_price * item.quantity) }} {{ currency }}
  • {% endfor %}
{{ t_shop('total_amount', 'Total General:') }} {{ "%.2f"|format(order.total_amount) }} {{ currency }}
{% if has_digital and order.download_token %}

{{ t_shop('digital_ready', '📥 Fișierul tău digital este gata!') }}

{{ t_shop('digital_download_info', 'Poți descărca fișierul digital apăsând pe butonul de mai jos:') }}

{% endif %}
{% endblock %}