22 lines
		
	
	
		
			717 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			717 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'global.html'%}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
{% block title %}Lost Place Deletion{% endblock %}
 | 
						|
 | 
						|
{% block maincontent %}
 | 
						|
 | 
						|
<form class="LP-Form" method="POST">
 | 
						|
    <fieldset class="LP-Form__Fieldset">
 | 
						|
        <legend class="LP-Form__Legend">Place löschen</legend>
 | 
						|
        {% csrf_token %}
 | 
						|
        <div class="LP-Form__Composition LP-Form__Composition--breakable">
 | 
						|
			<p class="LP-Paragraph">Are you sure you want to delete "{{place.name}}"?</p>
 | 
						|
			<div class="LP-Form__Composition">
 | 
						|
				<input type="submit" class="LP-Button LP-Button--cancel" name="cancel" value="Cancel"/>
 | 
						|
				<input type="submit" class="LP-Button" name="Delete" value="Delete"/>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
	</fieldset>
 | 
						|
</form>
 | 
						|
{% endblock maincontent %}
 |