الوزن:
{{ shipment.weight }} كج
التكلفة:
{{ "%.2f"|format(shipment.price) }} د.ك
تاريخ الإنشاء:
{{ shipment.created_at.strftime('%Y-%m-%d') }}
المحتويات:
{{ shipment.package_contents or 'أغراض شخصية' }}
{% if shipment.document_type %}
نوع المستند:
{{ shipment.document_type }}
{% endif %}
{% if shipment.notes %}
ملاحظات:
{{ shipment.notes }}
{% endif %}
الحالة:
{% if shipment.status == 'created' %}تم الإنشاء
{% elif shipment.status == 'packaged' %}تم التغليف
{% elif shipment.status == 'dispatching' %}جاري الإرسال
{% elif shipment.status == 'shipped' %}تم الإرسال
{% elif shipment.status == 'in_transit' %}في الطريق
{% elif shipment.status == 'received' %}تم الاستلام
{% elif shipment.status == 'delivered' %}تم التوصيل
{% else %}{{ shipment.status }}
{% endif %}