From a998e456eb9e10f15e1b7f73f0e2982bb7810353 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 17 Jan 2024 20:56:42 +0000 Subject: [PATCH] Add a page title to trip pages --- templates/trip_page.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/trip_page.html b/templates/trip_page.html index 1835348..715b14a 100644 --- a/templates/trip_page.html +++ b/templates/trip_page.html @@ -1,5 +1,7 @@ {% extends "base.html" %} +{% block title %}{{ trip.title }} ({{ display_date(trip.start) }}){% endblock %} + {% 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 } %}