{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% trans "Back to Dashboard" %}

{{ shipment.display_origin }} {{ shipment.display_destination }}

{{ shipment.get_status_display }}

{% trans "Shipment Details" %}

{{ shipment.description }}

{% trans "Weight / Volume" %} {{ shipment.weight }}
{% trans "Required Truck Type" %} {% if shipment.required_truck_type_link %} {{ shipment.required_truck_type_link }} {% else %} {% trans "Any" %} {% endif %}
{% trans "Requested Delivery Date" %} {{ shipment.delivery_date }}
{% trans "Offer Details" %}
{% for bid in bids %} {% empty %} {% endfor %}
{% trans "Truck" %} {% trans "Amount" %} {% trans "Status" %} {% trans "Action" %}
{{ bid.truck.display_truck_type }}
{{ bid.truck.plate_no }}
${{ bid.amount }} {{ bid.get_status_display }} {% if bid.status == 'PENDING' and user == bid.truck_owner %} {% else %} {% trans "No action available" %} {% endif %}

{% trans "No offers for this shipment yet." %}

{% if shipment.status == 'IN_PROGRESS' %}
{% trans "Shipment is IN PROGRESS" %}

{% trans "Assigned Truck:" %} {{ shipment.assigned_truck.display_truck_type }} ({{ shipment.assigned_truck.plate_no }})

{% endif %}
{% trans "Contact Information" %}
{% trans "Shipper" %}
{{ shipment.shipper.username }}
{% if shipment.assigned_truck %}
{% trans "Truck Owner" %}
{{ shipment.assigned_truck.owner.username }}
{% endif %}
{% if shipment.status == 'IN_PROGRESS' %}
{% if user == shipment.shipper %} {% trans "WhatsApp Driver" %} {% elif user == shipment.assigned_truck.owner %} {% trans "WhatsApp Shipper" %} {% endif %}
{% endif %}
{% endblock %}