{% extends "base.html" %} {% load i18n %} {% load static %} {% load thumbnail %} {% load leaflet_tags %} {% load crispy_forms_tags %} {% load eucs_platform_tags %} {% block head %} {{block.super }} {% leaflet_js %} {% leaflet_css %} {{ form.media.css }} {{ form.media.js }} {% endblock head %} {% block title %}{{ block.super }} :: Edit organisation{% endblock %} {% block list_of_items %} {% include '_crop_zone.html' %}
{% include "_intro_form_organisation.html" %}
{% csrf_token %}

{% trans "Main information" %}

{{ form.name|as_crispy_field }} {{ form.url|as_crispy_field }} {{ form.description|as_crispy_field }} {{ form.orgType|as_crispy_field }}

{% trans "Contact information" %}

{{ form.contact_point|as_crispy_field }} {{ form.contact_point_email|as_crispy_field }}

{% trans "Organisation logo" %}

{{ form.logo|as_crispy_field }} {{ form.x|as_crispy_field }} {{ form.y|as_crispy_field }} {{ form.height|as_crispy_field }} {{ form.width|as_crispy_field }}

{% trans "Location" %}*

{% trans "Locate on the map or inform in the field below the city or region and country of your initiative or organization." %}

{{ error }}

{% leaflet_map "map" callback="window.map_init_basic" %} {{ form.latitude|as_crispy_field }} {{ form.longitude|as_crispy_field }}
{% if user.is_staff and organisation.id and organisation.approved == None %} {% trans "Approve" %} {% trans "Do not" %} {% trans "Approve" %} {% endif %}
{% endblock list_of_items %} {% block scripts %} {{ form.media.js }} {% endblock scripts %}