lostplaces-backend/django_lostplaces/lostplaces/templates/place/place_delete.html

25 lines
834 B
HTML
Raw Normal View History

{% extends 'global.html'%}
{% load static %}
2020-10-01 23:05:34 +02:00
{% load i18n %}
2020-10-01 22:56:44 +02:00
{% block title %}{% tranlate 'Lost Place Deletion' %}{% endblock %}
{% block maincontent %}
2020-08-10 20:10:22 +02:00
<form class="LP-Form" method="POST">
<fieldset class="LP-Form__Fieldset">
2020-10-01 22:56:44 +02:00
<legend class="LP-Form__Legend">{% tranlate 'Delete place' %}</legend>
{% csrf_token %}
<div class="LP-Form__Composition">
<div class="LP-Form__Field LP-Form__InfoText">
2020-10-01 22:56:44 +02:00
<p class="LP-Paragraph">{% tranlate 'Are you sure you want to delete' %} "{{place.name}}"?</p>
</div>
</div>
2020-08-12 18:12:12 +02:00
<div class="LP-Form__Composition LP-Form__Composition--buttons">
{% include 'partials/form/submit.html' with referer=request.META.HTTP_REFERER action='Delete' %}
</div>
</fieldset>
</form>
{% endblock maincontent %}