gpp/port/templates/insurance/list.html

10 lines
174 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
<!-- TO IMPLEMENT -->
{% for insurance in insurances.all %}
<li>{{ insurance }}</li>
{% endfor %}
</ul>
{% endblock %}