1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 08:07:09 +00:00
plateforme-tfjm2/templates/tournament/team_form.html
2020-05-04 20:21:53 +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 %}