2023-02-20 16:53:45 +00:00
|
|
|
{% extends request.content_only|yesno:"empty.html,base.html" %}
|
2021-01-12 16:24:46 +00:00
|
|
|
|
|
|
|
{% load crispy_forms_filters i18n %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-01-12 16:51:55 +00:00
|
|
|
<form method="post" enctype="multipart/form-data">
|
2021-01-12 16:24:46 +00:00
|
|
|
<div id="form-content">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
</div>
|
|
|
|
<button class="btn btn-primary" type="submit">{% trans "Upload" %}</button>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|