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

{% trans "Send Shipping Offer" %}

{% trans "Target Truck" %}
{% if truck.truck_picture %} {% else %}
{% endif %}
{{ truck.display_truck_type }} - {{ truck.display_model }}
{% trans "Owner" %}: {{ truck.owner.username }} | {% trans "Plate" %}: {{ truck.plate_no }}
{% if form.errors %}
{% trans "Please correct the following errors:" %}
    {% for field in form %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endfor %} {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% csrf_token %}
{% trans "Shipment Details" %}
{{ form.required_truck_type_link }} {% if form.required_truck_type_link.errors %}
{{ form.required_truck_type_link.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
{{ form.weight }} {% if form.weight.errors %}
{{ form.weight.errors.0 }}
{% endif %}
{{ form.delivery_date }} {% if form.delivery_date.errors %}
{{ form.delivery_date.errors.0 }}
{% endif %}
{% trans "Route" %}
{{ form.origin_country }} {% if form.origin_country.errors %}
{{ form.origin_country.errors.0 }}
{% endif %}
{{ form.origin_city }} {% if form.origin_city.errors %}
{{ form.origin_city.errors.0 }}
{% endif %}
{{ form.destination_country }} {% if form.destination_country.errors %}
{{ form.destination_country.errors.0 }}
{% endif %}
{{ form.destination_city }} {% if form.destination_city.errors %}
{{ form.destination_city.errors.0 }}
{% endif %}
{% trans "Pricing & Terms" %}
$ {{ form.amount }}
{% if form.amount.errors %}
{{ form.amount.errors.0 }}
{% endif %}
{{ form.comments }} {% if form.comments.errors %}
{{ form.comments.errors.0 }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}