{% extends 'global.html'%}
{% load static %}

# {% block title %}Place erstellen{% endblock %}

{% block maincontent %}

<h2>Place erstellen</h2>
<form method="post" enctype="multipart/form-data">
  {% csrf_token %}
  {{ place_form.as_p }}
  {{ place_image_form.as_p }}
  <button type="submit">Abschicken</button>
</form>

{% endblock maincontent %}