48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'global.html'%}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
# {% block title %}Place aktualisieren{% endblock %}
 | 
						|
 | 
						|
{% block maincontent %}
 | 
						|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
 | 
						|
	<fieldset class="LP-Form__Fieldset">
 | 
						|
		<legend class="LP-Form__Legend">Place aktualisieren</legend>
 | 
						|
		{% csrf_token %}
 | 
						|
		<div class="LP-Form__Composition LP-Form__Composition--breakable">
 | 
						|
			<div class="LP-Form__Field">
 | 
						|
				{% include 'partials/form/inputField.html' with field=form.name %}
 | 
						|
			</div>
 | 
						|
			<div class="LP-Form__Field">
 | 
						|
				{% include 'partials/form/inputField.html' with field=form.location %}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="LP-Form__Composition LP-Form__Composition--breakable">
 | 
						|
			<div class="LP-Form__Field">
 | 
						|
				{% include 'partials/form/inputField.html' with field=form.latitude %}
 | 
						|
			</div>
 | 
						|
			<div class="LP-Form__Field">
 | 
						|
				{% include 'partials/form/inputField.html' with field=form.longitude %}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="LP-Form__Composition">
 | 
						|
			<div class="LP-Form__Field">
 | 
						|
				{% include 'partials/form/inputField.html' with field=form.description %}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="LP-Form__Composition">
 | 
						|
			<div class="LP-Form__Field">
 | 
						|
				{% include 'partials/form/inputField.html' with field=form.filename %}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="LP-Form__Composition">
 | 
						|
			<input type="submit" class="LP-Button" value="Abschicken"/>
 | 
						|
		</div>
 | 
						|
	</fieldset>
 | 
						|
 | 
						|
</form>
 | 
						|
 | 
						|
{% endblock maincontent %} |