{% extends "base.html" %} {% from "macros.html" import trip_link, display_date_no_year, display_date, display_datetime, display_time, conference_row, accommodation_row, flight_row, train_row, ferry_row with context %} {% set row = { "flight": flight_row, "train": train_row, "ferry": ferry_row } %} {% block title %}Trips - Edward Betts{% endblock %} {% block style %} {% set conference_column_count = 8 %} {% set accommodation_column_count = 8 %} {% set travel_column_count = 10 %} {% endblock %} {% macro section(heading, item_list) %} {% if item_list %} {% set items = item_list | list %}
{{ items | count }} trips
{% for trip in items %} {% set total_distance = trip.total_distance() %} {% set end = trip.end %}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 %}