8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-12-01 17:12:26 +00:00
re2o/users/templates/users/user.html

18 lines
408 B
HTML
Raw Normal View History

{% extends "users/sidebar.html" %}
2016-07-01 00:17:11 +00:00
{% load bootstrap3 %}
2016-07-02 13:59:44 +00:00
{% block title %}Création et modification d'utilisateur{% endblock %}
2016-07-01 00:17:11 +00:00
{% block content %}
{% bootstrap_form_errors userform %}
<form class="form" method="post">
2016-06-30 18:18:06 +00:00
{% csrf_token %}
2016-07-01 00:17:11 +00:00
{% bootstrap_form userform %}
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
2016-06-30 18:18:06 +00:00
</form>
<br />
<br />
<br />
2016-07-01 00:17:11 +00:00
{% endblock %}