Splitted PlaceEditView into PlaceCrate and PlaceUpdate

This commit is contained in:
2020-07-31 00:27:01 +02:00
parent 2fa4874c08
commit 81a9c756f6
4 changed files with 39 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'global.html'%}
{% load static %}
# {% block title %}Place erstellen{% endblock %}
{% block maincontent %}
<h2>Place aktualisieren</h2>
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Abschicken</button>
</form>
{% endblock maincontent %}