{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Shipper Dashboard" %}

{% trans "Manage your shipping offers and active shipments." %}

{% trans "Financials" %}

{% trans "Payments" %}

{% trans "View History" %}
{% trans "Subscription" %}
{% if request.user.profile.is_subscription_active %}

{% trans "Active" %}

{% trans "Expires:" %} {{ request.user.profile.subscription_expiry }} {% else %}

{% trans "Inactive" %}

{% trans "Payment required" %} {% endif %} {% trans "Manage" %}
{% trans "My Shipping Offers" %}
{% for bid in bids %} {% empty %} {% endfor %}
{% 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 "Active Shipments" %}
{% for shipment in shipments %} {% empty %} {% endfor %}
{% 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." %}
{% endblock %}