{% extends "places/base.html" %} {% load molly_maps %}{% load molly_utils %}{% load i18n %} {% block title %} {% blocktrans with entity.title as title %}Update {{ title }}{% endblocktrans %} {% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block content %}

{% trans "Important information" %}

{% blocktrans %}Thank you for wanting to improve the data provided by {{ site_name }}. However, before you submit any changes, you should be aware of the following terms.{% endblocktrans %}

{% blocktrans %}Your contribution will be released into the Public Domain, and then submitted to OpenStreetMap by {{ site_name }}.{% endblocktrans %}

{% blocktrans %}Your changes will be checked by a member of the {{ site_name }} team before being uploaded. {{ site_name }} may tidy or normalise the data you provide before they are uploaded using the {{ site_name }} OSM account.{% endblocktrans %}

{% blocktrans %}If you would like to be named as the original author of the changes, please provide your name and tick the attribution box. Your e-mail address will never be submitted to OSM, but may be used by us to clarify any changes you provide.{% endblocktrans %}

{% url places:static-openstreetmap as osm_url %} {% blocktrans %}You may be interested to read further information about OpenStreetMap and other ways in which one may contribute.{% endblocktrans %}

{% trans "Map" %}

{% blocktrans with entity.primary_type.verbose_name as type_name and entity.title as title %}You are submitting an update to the {{ type_name }} "{{ title }}".{% endblocktrans %}
{% render_location_map entity.location %}
{% csrf_token %}

{% trans "Not all fields will be relevant to the item you are updating, and all fields are optional." %}

{% trans "Provide your name and tick the box to be attributed for the change." %}
{{ form.contributor_name.label }} {{ form.contributor_name }}
{{ form.contributor_attribute.label }} {{ form.contributor_attribute }}
{% trans "Your e-mail address is useful should we want to clarify any change you make." %}
{{ form.contributor_email.label }} {{ form.contributor_email }}
{% trans "The following are general properties for most types of item." %}
{{ form.name.label }} {{ form.name }}
{{ form.operator.label }} {{ form.operator }}
{{ form.phone.label }} {{ form.phone }}
{{ form.opening_hours.label }} {{ form.opening_hours }}
{{ form.url.label }} {{ form.url }}
{{ form.cuisine.label }} {{ form.cuisine }}
{% trans "This next two about food apply mostly to pubs. For things that obviously serve food (e.g. restaurants), feel free to leave this empty." %}
{{ form.food.label }} {{ form.food }}
{{ form.food__hours.label }} {{ form.food__hours }}
{% trans "If there is an ATM accessible at all hours here, please set this. This may be left blank if you are editing an ATM." %}
{{ form.atm.label }} {{ form.atm }}
{% trans "The following only apply to post boxes. The reference is normally printed at the bottom of the details on the post box." %}
{{ form.collection_times.label }} {{ form.collection_times }}
{{ form.ref.label }} {{ form.ref }}
{% trans "For car parks and bicycle parking, please provide the number of spaces." %}
{{ form.capacity.label }} {{ form.capacity }}
{% trans "If you have any other information you think should be included, please tell us about it here." %}
{{ form.notes }}
{% trans "If you are happy with your changes and agree to the terms above, you may now click 'Submit'." %}
{% endblock %}