{% extends "base.html" %} {% block title %}الشحنات{% endblock %} {% block content %}
رقم التتبع | حالة الشحنة | اسم المرسل | اسم المستلم | طريق الشحن | الوزن | المحتويات | التاريخ | الإجراءات | |
---|---|---|---|---|---|---|---|---|---|
{{ shipment.tracking_number }} | {% set status_info = get_shipment_status_display(shipment.status) %} {{ status_info.name }} |
{{ shipment.sender_name }}
|
{{ shipment.receiver_name }}
|
{% if shipment.shipping_method %} {% if shipment.shipping_method == 'جوي' %} جوي {% elif shipment.shipping_method == 'بري' %} بري {% else %} {{ shipment.shipping_method }} {% endif %} {% else %} - {% endif %} | {% if shipment.weight and shipment.weight > 0 %} {{ "%.2f"|format(shipment.weight) }} كج {% else %} - {% endif %} | {% if shipment.package_contents %} {{ shipment.package_contents }} {% else %} {{ shipment.package_type }} {% endif %} |
{{ shipment.created_at.strftime('%Y-%m-%d') }}
{{ shipment.created_at.strftime('%H:%M') }}
|
||
لا توجد شحنات عامة |
رقم التتبع | حالة الشحنة | اسم المرسل | اسم المستلم | نوع المستند | الإجراء | التاريخ | الإجراءات | |
---|---|---|---|---|---|---|---|---|
{{ shipment.tracking_number }} | {% set status_info = get_shipment_status_display(shipment.status) %} {{ status_info.name }} |
{{ shipment.sender_name }}
|
{{ shipment.receiver_name }}
|
{% if shipment.document_type %} {{ get_document_type_arabic(shipment.document_type) }} {% else %} مستندات {% endif %} | {% if shipment.package_contents %} {{ shipment.package_contents }} {% else %} غير محدد {% endif %} |
{{ shipment.created_at.strftime('%Y-%m-%d') }}
{{ shipment.created_at.strftime('%H:%M') }}
|
||
لا توجد شحنات مستندات |
رقم التتبع | اسم المرسل | اسم المستلم | تكلفة الشحنة | المبلغ المدفوع | المبلغ المتبقي | تم الدفع | الإجراءات |
---|---|---|---|---|---|---|---|
{{ shipment.tracking_number }} |
{{ shipment.sender_name }}
|
{{ shipment.receiver_name }}
|
{{ "%.3f" | format(shipment.price) }} د.ك | {{ "%.3f" | format(shipment.paid_amount if shipment.paid_amount else 0.0) }} د.ك | {{ "%.3f" | format(shipment.remaining_amount if shipment.remaining_amount is not none else 0.0) }} د.ك | ||
جميع الشحنات مدفوعة بالكامل!لا توجد شحنات بمبالغ مستحقة في الوقت الحالي. |