{% load i18n %}

{% trans "Order Status Update" %}

{% trans "Your order has been updated." %}

{% trans "Order" %} #{{ order.id }}

{% trans "New Status" %}: {{ order.get_status_display }}

{% if update %}
{{ update.title }}
{{ update.description }}
{% endif %}

{% if order.status == 'confirmed' %}
{% trans "Your order has been confirmed and will be processed soon." %}
{% elif order.status == 'in_progress' %}
{% trans "We are currently working on your order." %}
{% elif order.status == 'completed' %}
{% trans "Your order has been completed and will be shipped soon." %}
{% if order.tracking_number %}
{% trans "Tracking Number" %}: {{ order.tracking_number }}
{% endif %}
{% endif %}

{% trans "You can view your order details at" %}: {{ order_url }}

{% trans "If you have any questions about your order, please contact our support team." %}
support@fursuitshop.com

© {% now "Y" %} Fursuit Shop. {% trans "All rights reserved." %} 