1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 05:58:25 +02:00
Files
plateforme-tfjm2/apps/participation/templates/participation/upload_synthesis.html
Yohann D'ANELLO c8780a6d9d Upload syntheses
2021-01-14 17:26:08 +01:00

14 lines
365 B
HTML

{% extends "base.html" %}
{% load crispy_forms_filters 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 content %}