{% extends "./template.html" %} {% block content %}
{% csrf_token %}

New Organisation

{% if form_errors %}
{{ form_errors }}
{% endif %}
{{ new_organisation_form.organisation_name }}
Sorry - but this is not a website. Please make sure it starts with https://
{{ new_organisation_form.organisation_website }}
{{ new_organisation_form.organisation_email }}
{% if duplication_count == 0 %} {% endif %}
{% if duplication_count > 0 %}

Possible Duplication

{% for row in duplicate_results %} {% endfor %}
Organisation Name Organisation Website Organisation Email
{{ row.organisation_name }} {{ row.organisation_website }} {{ row.organisation_email }}
{% endif %}
{% endblock %}