{% 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 }}

{% if update.image %} {% trans 'Progress Image' %} {% endif %} {% 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 "View Order Details" %}