parent
ad47f291f8
commit
2744f67987
3 changed files with 106 additions and 2 deletions
|
|
@ -44,7 +44,9 @@
|
|||
{% for trip in items %}
|
||||
{% set end = trip.end %}
|
||||
<div class="border border-2 rounded mb-2 p-2">
|
||||
<h3>{{ trip.title }} <small class="text-muted">({{ display_date(trip.start) }})</small></h3>
|
||||
<h3>
|
||||
<a href="{{ url_for("trip_page", start=trip.start.isoformat()) }}">{{ trip.title }}</a>
|
||||
<small class="text-muted">({{ display_date(trip.start) }})</small></h3>
|
||||
<div>Countries: {{ trip.countries_str }}</div>
|
||||
{% if end %}
|
||||
<div>Dates: {{ display_date_no_year(trip.start) }} to {{ display_date_no_year(end) }}</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue