2020-07-31 00:27:01 +02:00
|
|
|
{% extends 'global.html'%}
|
|
|
|
{% load static %}
|
2020-10-01 23:05:34 +02:00
|
|
|
{% load i18n %}
|
2021-04-10 08:23:36 +02:00
|
|
|
{% load widget_tweaks %}
|
2020-07-31 00:27:01 +02:00
|
|
|
|
2021-04-02 22:06:52 +02:00
|
|
|
# {% block title %}{% translate 'Edit place' %}{% endblock %}
|
2020-07-31 00:27:01 +02:00
|
|
|
|
|
|
|
{% block maincontent %}
|
2020-08-03 19:14:13 +02:00
|
|
|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
|
2020-08-05 18:57:09 +02:00
|
|
|
<fieldset class="LP-Form__Fieldset">
|
2021-04-02 22:06:52 +02:00
|
|
|
<legend class="LP-Form__Legend">{% translate 'Edit place' %}</legend>
|
2020-08-05 18:57:09 +02:00
|
|
|
{% csrf_token %}
|
|
|
|
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.name %}
|
|
|
|
</div>
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.location %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.latitude %}
|
|
|
|
</div>
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.longitude %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="LP-Form__Composition">
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.description %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="LP-Form__Composition">
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% include 'partials/form/inputField.html' with field=form.filename %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-10 08:23:36 +02:00
|
|
|
|
|
|
|
{% if object.placeimages.all|length > 0 %}
|
|
|
|
<legend class="LP-Form__Legend">{% translate 'Set Hero Image' %}</legend>
|
|
|
|
<div class="LP-Form__Composition">
|
|
|
|
<div class="LP-Form__Field">
|
|
|
|
{% render_field form.hero container_class='LP-ImageGrid__Container' item_class='LP-ImageGrid__Item LP-Select' current_selected_value=object.hero.id%}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-08-17 15:38:52 +02:00
|
|
|
|
2021-04-02 22:06:52 +02:00
|
|
|
{% translate 'Update' as action %}
|
2020-08-17 15:38:52 +02:00
|
|
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
2020-10-11 00:37:43 +02:00
|
|
|
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}
|
2020-08-17 15:38:52 +02:00
|
|
|
</div>
|
2020-08-05 18:57:09 +02:00
|
|
|
</fieldset>
|
2020-07-31 00:27:01 +02:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock maincontent %}
|