2020-07-29 20:22:04 +02:00
|
|
|
{% extends 'global.html'%}
|
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
# {% block title %}Place erstellen{% endblock %}
|
|
|
|
|
|
|
|
{% block maincontent %}
|
|
|
|
|
|
|
|
<h2>Place erstellen</h2>
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
2020-07-30 13:09:00 +02:00
|
|
|
{{ place_form.as_p }}
|
|
|
|
{{ place_image_form.as_p }}
|
2020-07-29 20:22:04 +02:00
|
|
|
<button type="submit">Abschicken</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock maincontent %}
|