15 lines
317 B
HTML
15 lines
317 B
HTML
{% 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 %} |