Unified template names

This commit is contained in:
2020-08-10 20:00:54 +02:00
parent 675cdc5721
commit 98a3c9f22c
6 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
{% extends 'global.html'%}
{% load static %}
{% block title %}Lost Place Deletion{% endblock %}
{% block maincontent %}
<form class="" method="POST" enctype="multipart/form-data">
<fieldset class="">
<legend class="">Delete place</legend>
{% csrf_token %}
<p>Are you sure you want to delete {{place.name}}?</p>
{{ form.as_p }}
<div class="">
<input type="submit" class="LP-Button" value="Delete"/>
</div>
</fieldset>
</form>
{% endblock maincontent %}