{% macro navbar() %} {% set pages_before_dropdowns = [ {"endpoint": "index", "label": "Home" }, {"endpoint": "recent", "label": "Recent" }, {"endpoint": "calendar_page", "label": "Calendar" }, ] %} {% set pages_after_dropdowns = [ {"endpoint": "travel_list", "label": "Travel" }, {"endpoint": "accommodation_list", "label": "Accommodation" }, {"endpoint": "gaps_page", "label": "Gaps" }, {"endpoint": "weekends", "label": "Weekends" }, {"endpoint": "launch_list", "label": "Space launches" }, {"endpoint": "holiday_list", "label": "Holidays" }, {"endpoint": "schengen_report", "label": "Schengen" }, ] + ([{"endpoint": "birthday_list", "label": "Birthdays" }] if g.user.is_authenticated else []) %} {% set trip_pages = [ {"endpoint": "trip_future_list", "label": "Future trips" }, {"endpoint": "trip_past_list", "label": "Past trips" }, {"endpoint": "trip_stats", "label": "Trip statistics" }, ] %} {% set conference_pages = [ {"endpoint": "conference_list", "label": "Conferences" }, {"endpoint": "past_conference_list", "label": "Past conferences" }, ] %} {% endmacro %}