commit 97b044cafb7f17f23b3b1beedcf70af209a60ddc Author: reverend <reverend@reverend2048.de> Date: Mon Sep 14 17:25:40 2020 +0200 Updating gitignore commit 4891d80486e1f95db8ae66385c7c97426a3ca1a4 Author: reverend <reverend@reverend2048.de> Date: Mon Sep 14 17:25:20 2020 +0200 Updating Readme commit f05c43abbdc7eb30896ad6d10fe80fd6483338d9 Author: reverend <reverend@reverend2048.de> Date: Mon Sep 14 17:23:30 2020 +0200 Renaming Module commit fd5ad2ee9f8cbacd565da45b257928192ffc651c Author: reverend <reverend@reverend2048.de> Date: Mon Sep 14 17:23:16 2020 +0200 Renaming module references commit 828a0dd5dd73723b84b77908497903ed26b6966b Author: reverend <reverend@reverend2048.de> Date: Mon Sep 14 17:21:20 2020 +0200 Renaming Project
		
			
				
	
	
		
			55 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'global.html'%}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
# {% block title %}Update place{% endblock %}
 | 
						|
 | 
						|
{% block maincontent %}
 | 
						|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
 | 
						|
    <fieldset class="LP-Form__Fieldset">
 | 
						|
        <legend class="LP-Form__Legend">Update place</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 LP-Form__Composition--buttons">
 | 
						|
            <div class="LP-Form__Field LP-Form__Button LP-Input">
 | 
						|
                <button class="LP-Button">Update</button>
 | 
						|
            </div>
 | 
						|
            <div class="LP-Form__Field LP-Form__Button LP-Input">
 | 
						|
                <a class="LP-Link" href="{% url 'place_detail' pk=place.pk %}">
 | 
						|
                    <button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </fieldset>
 | 
						|
 | 
						|
</form>
 | 
						|
 | 
						|
{% endblock maincontent %} |