django-web-galleries/django_web_galleries/web_galleries/templates/upload_image/upload.html

20 lines
710 B
HTML
Raw Permalink Normal View History

{% extends '../global.html' %}
2022-12-29 21:31:11 +01:00
{% load i18n %}
{% block content %}
<form method="POST" enctype="multipart/form-data">
{% csrf_token %}
2022-12-25 12:18:15 +01:00
<div class="RV-Fieldset">
{% include 'partials/form_input.html' with field=form.title %}
{% include 'partials/form_input.html' with field=form.image_file %}
{% include 'partials/form_input.html' with field=form.description %}
{% include 'partials/form_input.html' with field=form.private classes='RV-Input--compact RV-Input--reverse' %}
</div>
<div class="RV-Fieldset">
2022-12-29 21:31:11 +01:00
<button type="submit">{% translate 'Upload' %}</button>
2022-12-25 12:18:15 +01:00
</div>
</form>
{% endblock content %}