1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-01-15 04:52:40 +00:00
plateforme-tfjm2/apps/registration/templates/registration/update_user.html

20 lines
450 B
HTML

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