lostplaces-backend/django_lostplaces/lostplaces/templates/place_image/place_image_create.html

22 lines
732 B
HTML

{% extends 'global.html'%}
{% load i18n %}
{% block maincontent %}
<form class="LP-Form" method="POST" enctype="multipart/form-data">
<fieldset class="LP-Form__Fieldset">
<legend class="LP-Form__Legend">{% translate 'Submit images to a place' %}</legend>
{% csrf_token %}
<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">
{% include 'partials/form/submit.html' with referer=request.META.HTTP_REFERER %}
</div>
</fieldset>
</form>
{% endblock maincontent %}