28 lines
1016 B
HTML
28 lines
1016 B
HTML
{% extends 'global.html'%}
|
|
|
|
{% block maincontent %}
|
|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
|
|
<fieldset class="LP-Form__Fieldset">
|
|
<legend class="LP-Form__Legend">Submit images to an 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">
|
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
|
<button class="LP-Button">Submitt</button>
|
|
</div>
|
|
<div class="LP-Form__Field LP-Form__Button LP-Input">
|
|
<a class="LP-Link" href="{% url 'place_list' %}">
|
|
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
|
|
</form>
|
|
{% endblock maincontent %} |