{% extends "base.html" %} {% from "macros.html" import trip_link, display_date_no_year, display_date, conference_row, accommodation_row, flight_row, train_row with context %} {% set row = { "flight": flight_row, "train": train_row } %} {% block style %} {% set conference_column_count = 7 %} {% set accommodation_column_count = 7 %} {% set travel_column_count = 8 %} {% endblock %} {% block content %}

Trips

{{ future | count }} trips

{% for trip in future %} {% set end = trip.end %}
{{ display_date_no_year(trip.start) }} to {{ display_date_no_year(end) }}: {{ trip.title }} — {{ trip.locations_str }}
{% endfor %}
{% endblock %}