2022-12-28 15:57:52 +01:00
|
|
|
{% extends '../global.html' %}
|
|
|
|
|
2022-12-29 21:31:11 +01:00
|
|
|
{% load i18n %}
|
|
|
|
|
2022-12-28 15:57:52 +01:00
|
|
|
{% block content %}
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
|
|
{% csrf_token %}
|
2022-12-29 21:31:11 +01:00
|
|
|
<h2>{% translate 'Upload image to' %} "{{gallery.title}}"</h2>
|
2022-12-28 15:57:52 +01:00
|
|
|
<div class="RV-Fieldset">
|
|
|
|
{% include 'partials/form_input.html' with field=form.images %}
|
|
|
|
</div>
|
|
|
|
<div class="RV-Fieldset">
|
2022-12-29 21:31:11 +01:00
|
|
|
<button type="submit">{% translate 'Upload' %}</button>
|
2022-12-28 15:57:52 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|