16 lines
456 B
HTML
16 lines
456 B
HTML
{% extends '../global.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<h2>{% translate '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">{% translate 'Upload' %}</button>
|
|
</div>
|
|
</form>
|
|
{% endblock content %} |