{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %}
{% endblock %} {% block content %}{% trans "Manage your shipping offers and active shipments." %}
| {% trans "Truck" %} | {% trans "Route" %} | {% trans "Amount" %} | {% trans "Date Sent" %} | {% trans "Status" %} | {% trans "Action" %} |
|---|---|---|---|---|---|
|
{{ bid.truck.display_truck_type }}
{{ bid.truck.plate_no }}
|
{{ bid.shipment.display_origin }} {{ bid.shipment.display_destination }} | ${{ bid.amount }} | {{ bid.created_at|date:"d M Y" }} | {% if bid.status == 'PENDING' %} {% trans "Pending" %} {% elif bid.status == 'ACCEPTED' %} {% trans "Accepted" %} {% else %} {% trans "Rejected" %} {% endif %} | {% trans "Details" %} |
|
{% trans "You haven't sent any offers yet." %} {% trans "Find a Truck" %} |
|||||
| {% trans "Description" %} | {% trans "Route" %} | {% trans "Delivery Date" %} | {% trans "Status" %} | {% trans "Assigned Truck" %} | {% trans "Action" %} |
|---|---|---|---|---|---|
| {{ shipment.description|truncatechars:30 }} | {{ shipment.display_origin }} {{ shipment.display_destination }} | {{ shipment.delivery_date }} | {{ shipment.get_status_display }} | {% if shipment.assigned_truck %} {{ shipment.assigned_truck.plate_no }} {% else %} {% trans "None" %} {% endif %} | {% trans "Track" %} |
| {% trans "No active shipments." %} | |||||