plateforme-tfjm2/apps/participation/templates/participation/upload_solution.html

14 lines
335 B
HTML
Raw Normal View History

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