diff --git a/templates/trip/list.html b/templates/trip/list.html index 662c020..18fd6b9 100644 --- a/templates/trip/list.html +++ b/templates/trip/list.html @@ -153,10 +153,16 @@ {% for day, elements in trip.elements_grouped_by_day() %}

{{ display_date_no_year(day) }}

{% for e in elements %} - {% if e.element_type == "check-out" %} -
{{ e.get_emoji() }} {{ e.title }} (check-out)
- {% elif e.element_type == "check-in" %} -
{{ e.get_emoji() }} {{ e.title }} (check-in)
+ {% if e.element_type == "check-in" %} +
+ {{ e.get_emoji() }} {{ e.title }} + (check-in from {{ display_time(e.when) }}) +
+ {% elif e.element_type == "check-out" %} +
+ {{ e.get_emoji() }} {{ e.title }} + (check-out by {{ display_time(e.when) }}) +
{% else %}
{{ e.get_emoji() }}