{% extends "chimere/base.html" %} {% load i18n chimere_tags adminmedia inline_formset%} {% block extra_head %} {{ form.media }} {{ block.super }} {% head_chimere %} {% if dated %} {% endif %} {% endblock %} {% block content %} {{ block.super }} {% if submited %}{% submited %}{% endif %} {% if error_message %}
{% trans "Error" %}

{{ error_message }}

{% endif %}
{% trans "Add/modify a point of interest" %}
{% csrf_token %}
{%if form.point.errors %}
  • {% trans "Select a location for this new site" %}
{%endif%} {{point_widget}}

* {% trans "indicates a mandatory field" %}

{% if form.name.errors %}
{{ form.name.errors }}
{% endif %} {{ form.name }}
{% if form.categories.errors %}
{{ form.categories.errors }}
{% endif %} {{ form.categories }}
{{ form.description.errors }} {{ form.description }}

{{ form.description.help_text }}

{% if dated %}
{{ form.start_date.errors }} {{ form.start_date }}

{{ form.start_date.help_text }}

{{ form.end_date.errors }} {{ form.end_date }}

{{ form.end_date.help_text }}

{% endif %}
{% for field in form %} {% for property in properties %} {% ifequal field.name property.getNamedId %}
{% if field.errors %}
{{ field.errors }}
{% endif %} {{ field }}
{%endifequal%} {%endfor%} {%endfor%} {% inline_formset "Multimedia files" formset_multi %} {% inline_formset "Picture files" formset_picture %} {% if filtered_properties %} {% endif %}

{% trans "Personal information"%}

{% trans "This fields are not mandatory. If you provided them they not will be made public and they will only used to join you for this project."%}
{% if form.submiter_name.errors %}
{{ form.submiter_name.errors }}
{% endif %} {{ form.submiter_name }}
{% if form.submiter_email.errors %}
{{ form.submiter_email.errors }}
{% endif %} {{ form.submiter_email }}
{% if form.submiter_comment.errors %}
{{ form.submiter_comment.errors }}
{% endif %} {{ form.submiter_comment }}

{% trans "Upload in progress. Please wait..." %}

{% endblock %}