2020-08-06 22:29:03 +02:00
|
|
|
{% extends 'global.html'%}
|
|
|
|
{% load static %}
|
2020-10-01 23:05:34 +02:00
|
|
|
{% load i18n %}
|
2020-08-06 22:29:03 +02:00
|
|
|
|
2021-04-02 22:06:52 +02:00
|
|
|
{% block title %}{% translate 'Delete lost place' %}{% endblock %}
|
2020-08-06 22:29:03 +02:00
|
|
|
|
|
|
|
{% block maincontent %}
|
2020-08-10 20:10:22 +02:00
|
|
|
|
|
|
|
<form class="LP-Form" method="POST">
|
|
|
|
<fieldset class="LP-Form__Fieldset">
|
2021-04-02 22:06:52 +02:00
|
|
|
<legend class="LP-Form__Legend">{% translate 'Delete place' %}</legend>
|
2020-08-06 22:29:03 +02:00
|
|
|
{% csrf_token %}
|
2020-08-17 15:38:52 +02:00
|
|
|
<div class="LP-Form__Composition">
|
|
|
|
<div class="LP-Form__Field LP-Form__InfoText">
|
2021-04-02 22:06:52 +02:00
|
|
|
<p class="LP-Paragraph">{% blocktranslate with place_name=place.name%}Are you sure you want to delete {{place_name}}?{% endblocktranslate %}</p>
|
2020-08-17 15:38:52 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-11 00:37:43 +02:00
|
|
|
|
2021-04-02 22:06:52 +02:00
|
|
|
{% translate 'Delete' as action %}
|
2020-08-17 15:38:52 +02:00
|
|
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
2020-10-10 23:40:21 +02:00
|
|
|
{% include 'partials/form/submit.html' with referer=request.META.HTTP_REFERER action=action %}
|
2020-08-17 15:38:52 +02:00
|
|
|
</div>
|
2020-08-12 12:38:50 +02:00
|
|
|
</fieldset>
|
2020-08-06 22:29:03 +02:00
|
|
|
</form>
|
2020-08-12 11:28:11 +02:00
|
|
|
{% endblock maincontent %}
|