2020-09-26 09:48:06 +02:00
|
|
|
{% extends 'global.html'%}
|
2020-10-03 15:22:11 +02:00
|
|
|
{% load i18n %}
|
2020-09-26 09:48:06 +02:00
|
|
|
|
|
|
|
{% block maincontent %}
|
|
|
|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
|
|
|
|
<fieldset class="LP-Form__Fieldset">
|
2021-04-02 22:06:52 +02:00
|
|
|
<legend class="LP-Form__Legend">{% translate 'Submit images to a place' %}</legend>
|
2020-09-26 09:48:06 +02:00
|
|
|
{% 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">
|
2022-09-20 09:53:00 +02:00
|
|
|
{% include 'partials/form/submit.html' with referer=request.META.HTTP_REFERER %}
|
2020-09-26 09:48:06 +02:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
{% endblock maincontent %}
|