nuitdelinfo_2021/templates/boat/boat.html

18 lines
416 B
HTML
Raw Normal View History

2021-12-03 04:52:09 +01:00
{% if not rescue.validated %}
{% if rescue.pending_edit_of %}
<h1>This edit is not validated !</h1>
{% else %}
<h1>This new entry is not validated !</h1>
{% endif %}
{% endif %}
{{ boat.name }} <br />
{{ boat.model }} <br />
<br />
{{ boat.description.html | safe }} <br />
<h3>Rescues</h3>
{% for rescue in rescues.all %}
<a href="/a/{{ rescue.pk }}">{{ rescue }}</a>
{% endfor %}