{% load static %}
Отправка:
{% if route.arrival_DT %}{{ route.arrival_DT }}{% else %}Неизвестно{% endif %}
Прибытие:
{% if route.departure_DT %}{{ route.departure_DT }}{% else %}Неизвестно{% endif %}
Откуда заберёт:
{% if route.type_transport == 'avia' %}{{ route.from_airport }}{% else %}{{ route.get_from_place_display }}{% endif %}
Куда доставит:
{% if route.type_transport == 'avia' %}{{ route.to_airport }}{% else %}{{ route.get_to_place_display }}{% endif %}