1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 12:07:09 +00:00
plateforme-tfjm2/templates/tournament/pool_form.html
Yohann D'ANELLO 104ca590a5 Pool support
2020-05-05 04:45:38 +02:00

12 lines
281 B
HTML

{% extends "base.html" %}
{% load i18n crispy_forms_filters %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" class="btn btn-primary btn-block" value="{% trans "Submit" %}">
</form>
{% endblock %}