1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-27 09:45:25 +02:00

Upload solution is working

This commit is contained in:
Yohann D'ANELLO
2021-01-12 17:24:46 +01:00
parent 09e5a72470
commit 2ca0444053
7 changed files with 109 additions and 6 deletions

View File

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% load crispy_forms_filters i18n %}
{% block content %}
<form method="post">
<div id="form-content">
{% csrf_token %}
{{ form|crispy }}
</div>
<button class="btn btn-primary" type="submit">{% trans "Upload" %}</button>
</form>
{% endblock content %}