8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-01-27 10:34:21 +00:00
re2o/users/templates/users/user.html

49 lines
1.7 KiB
HTML
Raw Normal View History

{% extends "users/sidebar.html" %}
{% 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 %}
{% 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 %}
{% massive_bootstrap_form userform 'room,school,administrators,members' %}
{% 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>
{% 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>
{% endif %}
2017-12-18 21:12:57 -05:00
<br/>
<br/>
<br/>
2016-07-01 02:17:11 +02:00
{% endblock %}