<% var title = t('actions.myTrips'); %> <%- include('../partials/header') %>

🚚 <%= t('actions.myTrips') %>

<% if (trips.length === 0) { %>

<%= t('trips.noTrips') %>

<% } else { %>
<% trips.forEach(trip => { %>
📍 <%= trip.load ? trip.load.origin_city + ' → ' + trip.load.destination_city : 'N/A' %>
₹<%= Number(trip.amount).toLocaleString('en-IN') %> <% if (trip.load) { %> | <%= trip.load.weight_tons %> <%= t('common.tons') %> | <%= trip.load.truck_type %><% } %>
<%= trip.status %>
<% if (user.role === 'driver' && trip.status !== 'delivered' && trip.status !== 'cancelled') { %>
<% if (trip.status === 'confirmed') { %>
<% } else if (trip.status === 'picked_up') { %>
<% } else if (trip.status === 'in_transit') { %>
<% } %>
<% } %>
<% }) %>
<% } %>
<%- include('../partials/footer') %>