{% extends "index.html" %}
{% block form %}
{% if insurance is None %}
No insurance yet assigned for this boat
{% else %}
You're currently insured at
{{ insurance.name }}
If it's still the case, or if you don't have an insurance, please push the next button.
If not, please type in your insurance's name below.
{{ insurance_search_form }}
{% endif %}
{% endblock %}
{% block formnew %}