{% extends 'global.html'%} {% load static %} {% load i18n %} # {% block title %}{% trans 'Edit place' %}{% endblock %} {% block maincontent %}
{% trans 'Edit place' %} {% csrf_token %}
{% include 'partials/form/inputField.html' with field=form.name %}
{% include 'partials/form/inputField.html' with field=form.location %}
{% include 'partials/form/inputField.html' with field=form.latitude %}
{% include 'partials/form/inputField.html' with field=form.longitude %}
{% include 'partials/form/inputField.html' with field=form.description %}
{% include 'partials/form/inputField.html' with field=form.filename %}
{% trans 'Update' as action %}
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}
{% endblock maincontent %}