Edward Betts
ce9faa654f
Creating a new entity called a trip. This will group together any travel accommodation and conferences that happen together on one trip. A trip is assumed to start when leaving home and finish when returning home. The start date of a trip in is the trip ID. The date is written in ISO format. This assumes there cannot be multiple trips one one day. This assumption might be wrong, for example a morning day trip by rail, then another trip starts in the afternoon. I can change my choice of using dates as trip IDs if that happens. Sometimes during the planning of a trip the start date is unknown. For now we make up a start date, we can always change it later. If we use the start date in URLs then the URLs will change. Might need to keep a file of redirects, or could think of a different style of identifier. Trip ID have been added to accommodation, conferences, trains and flights. Later there will be a trips.yaml with notes about each trip.
36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
{% macro navbar() %}
|
|
|
|
{% set pages = [
|
|
{"endpoint": "index", "label": "Home" },
|
|
{"endpoint": "trip_list", "label": "Trips" },
|
|
{"endpoint": "conference_list", "label": "Conference" },
|
|
{"endpoint": "travel_list", "label": "Travel" },
|
|
{"endpoint": "accommodation_list", "label": "Accommodation" },
|
|
{"endpoint": "gaps_page", "label": "Gaps" },
|
|
{"endpoint": "launch_list", "label": "Space launches" },
|
|
] %}
|
|
|
|
|
|
<nav class="navbar navbar-expand-md bg-success" data-bs-theme="dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="{{ url_for("index") }}">Agenda</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
{% for page in pages %}
|
|
{% set is_active = request.endpoint == page.endpoint %}
|
|
<li class="nav-item">
|
|
<a class="nav-link{% if is_active %} border border-white border-2 active{% endif %}" {% if is_active %} aria-current="page"{% endif %} href="{{ url_for(page.endpoint) }}">
|
|
{{ page.label }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
{% endmacro %}
|