1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-12-27 11:42:23 +00:00
plateforme-tfjm2/apps/participation/templates/participation/update_team.html
2020-12-27 11:49:54 +01:00

16 lines
380 B
HTML

{% extends "base.html" %}
{% load crispy_forms_filters i18n %}
{% block content %}
<form method="post">
<div id="form-content">
{% csrf_token %}
{{ form|crispy }}
{{ participation_form|crispy }}
</div>
<button class="btn btn-success" type="submit">{% trans "Update" %}</button>
</form>
{% endblock content %}