{% extends "base.html" %} {% block title %}{{ meta_title }}{% endblock %} {% block content %}

Trip detail

{{ trip.date|date:"F j, Y" }}

{{ trip.start_location }} → {{ trip.end_location }}

Time{{ trip.start_time|time:"g:i A" }} – {{ trip.end_time|time:"g:i A" }}
Trip type{{ trip.get_trip_type_display }}
Miles{{ trip.distance_miles|floatformat:1 }} ({{ trip.get_distance_source_display }})
Odometer{% if trip.start_odometer or trip.end_odometer %}{{ trip.start_odometer|default:'—' }} → {{ trip.end_odometer|default:'—' }}{% else %}Not recorded{% endif %}

Business purpose

{{ trip.business_purpose }}

Notes

{{ trip.notes|default:"No additional notes recorded." }}

Audit trail

Created

{{ trip.created_at|date:"M j, Y g:i A" }}

Updated

{{ trip.updated_at|date:"M j, Y g:i A" }}

{% if confirm_delete %}

Delete this trip?

This removes the mileage entry from your log.

{% csrf_token %}
Cancel
{% else %} Delete trip {% endif %}
{% endblock %}