1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-12-28 17:02:23 +00:00
plateforme-tfjm2/apps/participation/templates/participation/upload_solution.html

14 lines
365 B
HTML
Raw Normal View History

2021-01-12 16:24:46 +00:00
{% extends "base.html" %}
{% 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 %}