14 lines
403 B
HTML
14 lines
403 B
HTML
|
{% extends '../global.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="POST" enctype="multipart/form-data">
|
||
|
{% csrf_token %}
|
||
|
<h2>Upload image to "{{gallery.title}}"</h2>
|
||
|
<div class="RV-Fieldset">
|
||
|
{% include 'partials/form_input.html' with field=form.images %}
|
||
|
</div>
|
||
|
<div class="RV-Fieldset">
|
||
|
<button type="submit">Upload</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
{% endblock content %}
|