rowt/templates/admin/boat/index.html.tera

19 lines
342 B
Plaintext
Raw Normal View History

{% import "includes/macros" as macros %}
2023-07-26 12:56:19 +02:00
{% import "includes/forms/boat" as boat %}
{% extends "base" %}
{% block content %}
2023-07-30 14:33:50 +02:00
<div class="max-w-screen-lg w-full">
<h1 class="h1">Boats</h1>
{{ boat::new() }}
2023-09-28 16:40:05 +02:00
{% for boat in boats %}
{{ boat::edit(boat=boat, uuid=loop.index) }}
{% endfor %}
2023-07-30 14:33:50 +02:00
</div>
{% endblock content %}