gpp/port/templates/boat/list.html
2019-06-08 21:02:25 +02:00

9 lines
137 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
{% for boat in boats.all %}
<li>{{ boat }}</li>
{% endfor %}
</ul>
{% endblock %}