From ce07ae65b1231a54a9bab567e87558aa5a783321 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 15 Jun 2024 20:57:59 +0100 Subject: [PATCH] Switch to plurals for navbar labels --- templates/navbar.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/navbar.html b/templates/navbar.html index 0e7d7a1..6ac7333 100644 --- a/templates/navbar.html +++ b/templates/navbar.html @@ -2,16 +2,16 @@ {% set pages = [ {"endpoint": "index", "label": "Home" }, - {"endpoint": "trip_future_list", "label": "Future trip" }, - {"endpoint": "trip_past_list", "label": "Past trip" }, - {"endpoint": "conference_list", "label": "Conference" }, - {"endpoint": "past_conference_list", "label": "Past conference" }, + {"endpoint": "trip_future_list", "label": "Future trips" }, + {"endpoint": "trip_past_list", "label": "Past trips" }, + {"endpoint": "conference_list", "label": "Conferences" }, + {"endpoint": "past_conference_list", "label": "Past conferences" }, {"endpoint": "travel_list", "label": "Travel" }, {"endpoint": "accommodation_list", "label": "Accommodation" }, - {"endpoint": "gaps_page", "label": "Gap" }, - {"endpoint": "weekends", "label": "Weekend" }, - {"endpoint": "launch_list", "label": "Space launch" }, - {"endpoint": "holiday_list", "label": "Holiday" }, + {"endpoint": "gaps_page", "label": "Gaps" }, + {"endpoint": "weekends", "label": "Weekends" }, + {"endpoint": "launch_list", "label": "Space launches" }, + {"endpoint": "holiday_list", "label": "Holidays" }, ] + ([{"endpoint": "birthday_list", "label": "Birthdays" }] if g.user.is_authenticated else []) %}