1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-04-02 02:51:19 +00:00
2023-02-20 21:14:15 +01:00

15 lines
403 B
HTML

{% extends request.content_only|yesno:"empty.html,base.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block content %}
<form method="post" enctype="multipart/form-data">
<div id="form-content">
{% csrf_token %}
{{ form|crispy }}
</div>
<button class="btn btn-primary" type="submit">{% trans "Upload" %}</button>
</form>
{% endblock %}