{% extends "base.html" %} {% block title %}View Travel Record - {{ record.country }}{% endblock %} {% block content %}

Travel Record Details

{{ record.country }} - {{ record.city }}

Destination
{{ record.country }}
{{ record.city }}
Travel Dates
{{ record.departure_date.strftime('%B %d, %Y') if record.departure_date else 'Not specified' }}
{% if record.return_date %} {{ record.return_date.strftime('%B %d, %Y') }} {% else %} Not specified {% endif %}
{% if record.departure_date and record.return_date %}
{{ (record.return_date - record.departure_date).days }} days
{% endif %}
Purpose of Travel
{{ record.purpose|title }}
{% if record.flight_notes %}
Flight Notes & Additional Information
{{ record.flight_notes|replace('\n', '
')|safe }}
{% endif %} {% if record.photos %}
Travel Photos ({{ record.photos|length }})
{% endif %}
Record Information
{{ record.created_at.strftime('%B %d, %Y at %I:%M %p') if record.created_at else 'Unknown' }}
{{ record.updated_at.strftime('%B %d, %Y at %I:%M %p') if record.updated_at else 'Unknown' }}
×
{% endblock %}