2017-01-16 00:48:09 +01:00
{% extends "users/sidebar.html" %}
2017-01-15 18:07:42 -05:00
{% comment %}
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
se veut agnostique au réseau considéré, de manière à être installable en
quelques clics.
Copyright © 2017 Gabriel Détraz
Copyright © 2017 Goulven Kermarec
Copyright © 2017 Augustin Lemesle
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
{% endcomment %}
2016-07-01 02:17:11 +02:00
{% load bootstrap3 %}
2017-10-14 13:27:56 +00:00
{% load massive_bootstrap_form %}
2016-07-01 02:17:11 +02:00
2016-07-02 15:59:44 +02:00
{% block title %}Création et modification d'utilisateur{% endblock %}
2016-07-01 02:17:11 +02:00
{% block content %}
{% bootstrap_form_errors userform %}
< form class = "form" method = "post" >
2016-06-30 20:18:06 +02:00
{% csrf_token %}
2017-11-20 04:41:29 +01:00
{% massive_bootstrap_form userform 'room,school,administrators,members' %}
2018-01-31 06:25:39 +01:00
{% bootstrap_button action_name button_type="submit" icon="star" %}
2016-06-30 20:18:06 +02:00
< / form >
2018-01-14 23:47:44 +01:00
< br >
2018-01-27 23:15:01 +01:00
{% if showCGU %}
2018-01-14 23:47:44 +01:00
< p > En cliquant sur Créer ou modifier, l'utilisateur s'engage à respecter les < a href = "/media/{{ GTU }}" download = "CGU" > règles d'utilisation du réseau< / a > .< / p >
< h3 > Résumé des règles d'utilisations< / h3 >
< p > {{ GTU_sum_up }}< / p >
2018-01-27 23:15:01 +01:00
{% endif %}
2017-12-18 21:12:57 -05:00
< br / >
< br / >
< br / >
2016-07-01 02:17:11 +02:00
{% endblock %}