-
{{ amount_seats }}x
+
+
+
+ {% if grouped_boats[0].amount_seats < 9 or grouped_boats[0].amount_seats == 24 %}
+ {{ amount_seats }}x
+ {% elif grouped_boats[0].amount_seats == 9 %}
+ {{ grouped_boats[0].amount_seats - 1 }}+
+ {% else %}
+ Vereinsfremde Boote
+ {% endif %}
+
+
+ ({{ grouped_boats | length }})
+
+
+
+ {% for boat in grouped_boats | sort(attribute="name") %}
+
+
+ {{ boat.name }}
+ {% if boat.owner %}(privat){% endif %}
+
+
+ {% endfor %}
- {% for boat in grouped_boats | sort(attribute="name") %}
-
-
- {{ boat.name }}
- {% if boat.owner %}(privat){% endif %}
-
-
- {% endfor %}
-
+
{% endfor %}
{% endmacro show_boats %}
+
{# Shows the form for creating a new logbook entry. #}
{% macro new(shipmaster) %}