مرسال
M
مرسال إكسبرس للاستيراد والتصدير
{{ shipment.tracking_number if shipment else 'SHIP-20250628-001' }}
الاتجاه
{% if shipment and shipment.direction %} {% if shipment.direction == 'kuwait_to_sudan' %} KW → SU {% elif shipment.direction == 'sudan_to_kuwait' %} SU → KW {% else %} KW → SU {% endif %} {% else %} KW → SU {% endif %}
المرسل:
{{ shipment.sender_name if shipment else 'أحمد محمد علي' }}
{{ shipment.sender_phone if shipment else '+965 1234 5678' }}
المستلم:
{{ shipment.receiver_name if shipment else 'فاطمة أحمد حسن' }}
{{ shipment.receiver_phone if shipment else '+249 123 456 789' }}
الوزن:
{% if shipment and shipment.weight %} {{ "%.3f" | format(shipment.weight) }} كيلو {% else %} 1.000 كيلو {% endif %}
{% if shipment and shipment.receiver_address %}
عنوان المستلم:
{{ shipment.receiver_address }}
{% else %}
عنوان المستلم:
الخرطوم، السودان
{% endif %}