{% extends "base.html" %} {% block title %}{{ trip.title }} ({{ display_date(trip.start) }}) - Edward Betts{% endblock %} {% from "macros.html" import trip_link, display_datetime, display_date_no_year, display_date, conference_row, accommodation_row, flight_row, train_row with context %} {% set row = { "flight": flight_row, "train": train_row } %} {% macro next_and_previous() %}
{% if prev_trip %} previous: {{ trip_link(prev_trip) }} ({{ (trip.start - prev_trip.end).days }} days) {% endif %} {% if next_trip %} next: {{ trip_link(next_trip) }} ({{ (next_trip.start - trip.end).days }} days) {% endif %}
{% endmacro %} {% block style %} {% if coordinates %} {% endif %} {% set conference_column_count = 7 %} {% set accommodation_column_count = 7 %} {% set travel_column_count = 9 %} {% endblock %} {% set end = trip.end %} {% set total_distance = trip.total_distance() %} {% set distances_by_transport_type = trip.distances_by_transport_type() %} {% block content %}{% if end %} {{ display_date_no_year(trip.start) }} to {{ display_date_no_year(end) }} ({{ (end - trip.start).days }} nights) {% else %} {{ display_date_no_year(trip.start) }} (end date missing) {% endif %}
Topic: {{ item.topic }} Venue: {{ item.venue }} Location: {{ item.location }} {% if country %} {{ country.flag }} {% elif item.online %} π» Online {% else %} country code {{ item.country }} not found {% endif %} {% if item.free %} free to attend {% elif item.price and item.currency %} price: {{ item.price }} {{ item.currency }} {% endif %}
Address: {{ item.address }} Location: {{ item.location }} {% if country %} {{ country.flag }} {% else %} country code {{ item.country }} not found {% endif %} {% if g.user.is_authenticated and item.price and item.currency %} price: {{ item.price }} {{ item.currency }} {% endif %}
Address: {{ item.address }} | Location: {{ item.location }} {% if country %} {{ country.flag }} {% else %} country code {{ item.country }} not found {% endif %} {% if g.user.is_authenticated and item.price and item.currency %} | price: {{ item.price }} {{ item.currency }} {% endif %}
{% if item.type == "flight" %}
{{ display_date(item.date) }} | {% else %}{% endif %} | {{ country.flag }} {{ country.name }} | {{ item.display_name }} |
No public holidays during trip.
{% endif %}