Merge pull request 'sort boats by name' (#252) from staging into main
Reviewed-on: #252
This commit was merged in pull request #252.
	This commit is contained in:
		| @@ -8,7 +8,7 @@ | ||||
|             <div class="bg-gray-100 dark:bg-primary-600 text-primary-950 dark:text-white text-center text-sm mb-2"> | ||||
|                 <strong>{{ amount_seats }}x</strong> | ||||
|             </div> | ||||
|             {% for boat in grouped_boats %} | ||||
|             {% for boat in grouped_boats | sort(attribute="name") %} | ||||
|                 <div id="boat-{{ boat.id }}" | ||||
|                      class="px-3 boats-js text-black dark:text-white {% if boat.damage != 'locked' and not boat.on_water %} cursor-pointer hover:text-primary-900 dark:hover:text-gray-100 {% endif %}" | ||||
|                      {% if boat.damage != 'locked' and not boat.on_water %} data-seats="{{ boat.amount_seats }}" data-default_shipmaster_only_steering="{{ boat.default_shipmaster_only_steering }}" data-default-destination="{{ boat.default_destination }}" data-onclick="true" {% endif %} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user