18 lines
		
	
	
		
			521 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			521 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% 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 %} |