gpp/port/templates/insurance/add.html

13 lines
310 B
HTML

{% extends "base.html" %}
{% block content %}
<form action="{% url 'insurance:add' %}" method="post">
{% csrf_token %}
<fieldset>
<!-- TO IMPLEMENT -->
<legend>Insurance</legend>
{{ form.insurance }}
</fieldset>
<input type="submit" value="add"/>
</form>
{% endblock %}