mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
17 lines
408 B
HTML
17 lines
408 B
HTML
{% extends "users/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Création et modification d'utilisateur{% endblock %}
|
|
|
|
{% block content %}
|
|
{% bootstrap_form_errors userform %}
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form userform %}
|
|
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
|
|
</form>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|