2017-06-25 22:50:55 +00:00
{% extends "preferences/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 %}
{% load bootstrap3 %}
2017-12-27 22:40:27 +00:00
{% load acl %}
2018-07-19 12:33:20 +00:00
{% load design %}
2018-07-26 19:53:32 +00:00
{% load i18n %}
2017-06-25 22:50:55 +00:00
{% block title %}Création et modification des préférences{% endblock %}
{% block content %}
2018-07-23 12:51:40 +00:00
< h4 > Préférences utilisateur< / h4 >
2018-07-23 09:36:25 +00:00
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'OptionalUser' %}" >
2018-07-30 15:00:41 +00:00
< i class = "fa fa-edit" > < / i > Editer
< / a >
< h5 > Généralités< / h5 >
< table class = "table table-striped" >
< tr >
< th > Téléphone obligatoirement requis< / th >
< td > {{ useroptions.is_tel_mandatory|tick }}< / td >
< th > Auto inscription< / th >
< td > {{ useroptions.self_adhesion|tick }}< / td >
< / tr >
< tr >
2018-08-13 17:36:57 +00:00
2018-07-30 15:00:41 +00:00
< th > Shell par défaut des utilisateurs< / th >
< td > {{ useroptions.shell_default }}< / td >
2018-08-13 17:36:57 +00:00
< th > Les utilisateurs peuvent changer leur shell< / th >
< td > {{ useroptions.self_change_shell|tick }}< / td >
2018-07-30 15:00:41 +00:00
< / tr >
< tr >
< th > Creations d'adhérents par tous< / th >
< td > {{ useroptions.all_can_create_adherent|tick }}< / td >
< th > Creations de clubs par tous< / th >
< td > {{ useroptions.all_can_create_club|tick }}< / td >
< / tr >
2018-08-13 17:36:57 +00:00
< tr >
< th > Champ gpg fingerprint< / th >
< td > {{ useroptions.gpg_fingerprint|tick }}< / td >
< / tr >
2018-07-23 09:36:25 +00:00
< / table >
2018-07-30 15:00:41 +00:00
< h5 > Comptes mails< / h5 >
< table class = "table table-striped" >
< tr >
< th > Gestion des comptes mails< / th >
< td > {{ useroptions.local_email_accounts_enabled | tick }}< / td >
< th > Extension mail interne< / th >
< td > {{ useroptions.local_email_domain }}< / td >
< / tr >
< tr >
2018-08-01 11:06:25 +00:00
< th > Nombre d'alias mail max< / th >
< td > {{ useroptions.max_email_address }}< / td >
2018-07-30 15:00:41 +00:00
< / tr >
< / table >
< h4 > Préférences machines< / h4 >
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'OptionalMachine' %}" >
< i class = "fa fa-edit" > < / i > Editer
< / a >
< table class = "table table-striped" >
< tr >
< th > Mot de passe par machine< / th >
< td > {{ machineoptions.password_machine|tick }}< / td >
< th > Machines/interfaces autorisées par utilisateurs< / th >
< td > {{ machineoptions.max_lambdauser_interfaces }}< / td >
< / tr >
< tr >
< th > Alias dns autorisé par utilisateur< / th >
< td > {{ machineoptions.max_lambdauser_aliases }}< / td >
< th > Support de l'ipv6< / th >
< td > {{ machineoptions.ipv6_mode }}< / td >
< / tr >
< tr >
< th > Creation de machines< / th >
< td > {{ machineoptions.create_machine|tick }}< / td >
< / tr >
< / table >
2018-07-23 09:36:25 +00:00
< h4 > Préférences topologie< / h4 >
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'OptionalTopologie' %}" >
2018-07-30 15:00:41 +00:00
< i class = "fa fa-edit" > < / i > Editer
2018-07-23 09:36:25 +00:00
< / a >
< table class = "table table-striped" >
2018-07-30 15:00:41 +00:00
< tr >
< th > Politique générale de placement de vlan< / th >
< td > {{ topologieoptions.radius_general_policy }}< / td >
< th >
Ce réglage défini la politique vlan après acceptation radius :
soit sur le vlan de la plage d'ip de la machine, soit sur un
vlan prédéfini dans "Vlan où placer les machines après acceptation
RADIUS"
< / th >
< td > < / td >
< / tr >
< tr >
< th > Vlan où placer les machines après acceptation RADIUS< / th >
< td > {{ topologieoptions.vlan_decision_ok }}< / td >
< th > Vlan où placer les machines après rejet RADIUS< / th >
< td > {{ topologieoptions.vlan_decision_nok }}< / td >
< / tr >
2018-07-23 09:36:25 +00:00
< / table >
2018-07-30 15:00:41 +00:00
2018-07-23 09:36:25 +00:00
< h4 > Préférences generales< / h4 >
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'GeneralOption' %}" >
2018-07-30 15:00:41 +00:00
< i class = "fa fa-edit" > < / i > Editer
2018-07-23 09:36:25 +00:00
< / a >
< table class = "table table-striped" >
2018-07-30 15:00:41 +00:00
< tr >
< th > Nom du site web< / th >
< td > {{ generaloptions.site_name }}< / td >
< th > Adresse mail d'expedition automatique< / th >
< td > {{ generaloptions.email_from }}< / td >
< / tr >
< tr >
< th > Affichage de résultats dans le champ de recherche< / th >
< td > {{ generaloptions.search_display_page }}< / td >
< th > Nombre d'items affichés en liste (taille normale)< / th >
< td > {{ generaloptions.pagination_number }}< / td >
< / tr >
< tr >
< th > Nombre d'items affichés en liste (taille élevée)< / th >
< td > {{ generaloptions.pagination_large_number }}< / td >
< th > Temps avant expiration du lien de reinitialisation de mot de passe (en heures)< / th >
< td > {{ generaloptions.req_expire_hrs }}< / td >
< / tr >
< tr >
< th > Message global affiché sur le site< / th >
< td > {{ generaloptions.general_message }}< / td >
< th > Résumé des CGU< / th >
< td > {{ generaloptions.GTU_sum_up }}< / td >
< tr >
< tr >
< th > CGU< / th >
< td > {{generaloptions.GTU}}< / th >
< / tr >
2018-07-23 09:36:25 +00:00
< / table >
2018-07-30 15:00:41 +00:00
2018-07-23 09:36:25 +00:00
< h4 > Données de l'association< / h4 >
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'AssoOption' %}" >
2018-07-30 15:00:41 +00:00
< i class = "fa fa-edit" > < / i > Editer
2018-07-23 09:36:25 +00:00
< / a >
< table class = "table table-striped" >
2018-07-30 15:00:41 +00:00
< tr >
< th > Nom< / th >
< td > {{ assooptions.name }}< / td >
< th > SIRET< / th >
< td > {{ assooptions.siret }}< / td >
< / tr >
< tr >
< th > Adresse< / th >
< td > {{ assooptions.adresse1 }}< br >
{{ assooptions.adresse2 }}< / td >
< th > Contact mail< / th >
< td > {{ assooptions.contact }}< / td >
< / tr >
< tr >
< th > Telephone< / th >
< td > {{ assooptions.telephone }}< / td >
< th > Pseudo d'usage< / th >
< td > {{ assooptions.pseudo }}< / td >
< / tr >
< tr >
< th > Objet utilisateur de l'association< / th >
< td > {{ assooptions.utilisateur_asso }}< / td >
< th > Description de l'association< / th >
< td > {{ assooptions.description | safe }}< / td >
< / tr >
2018-07-23 09:36:25 +00:00
< / table >
2018-07-30 15:00:41 +00:00
2018-07-23 09:36:25 +00:00
< h4 > Messages personalisé dans les mails< / h4 >
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'MailMessageOption' %}" >
2018-07-30 15:00:41 +00:00
< i class = "fa fa-edit" > < / i > Editer
2018-07-23 09:36:25 +00:00
< / a >
< table class = "table table-striped" >
2018-07-30 15:00:41 +00:00
< tr >
< th > Mail de bienvenue (Français)< / th >
< td > {{ mailmessageoptions.welcome_mail_fr | safe }}< / td >
< / tr >
< tr >
< th > Mail de bienvenue (Anglais)< / th >
< td > {{ mailmessageoptions.welcome_mail_en | safe }}< / td >
< / tr >
2018-07-23 09:36:25 +00:00
< / table >
2018-07-30 15:00:41 +00:00
< h4 > Liste des services et préférences page d'accueil< / h4 >
2018-07-23 09:36:25 +00:00
{% can_create preferences.Service%}
2018-07-30 15:00:41 +00:00
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:add-service' %}" > < i class = "fa fa-plus" >
< / i > Ajouter un service
< / a >
2018-07-23 09:36:25 +00:00
{% acl_end %}
2018-08-01 17:07:01 +00:00
< a class = "btn btn-danger btn-sm" role = "button" href = "{% url 'preferences:del-service' %}" > < i class = "fa fa-trash" >
2018-07-30 15:00:41 +00:00
< / i > Supprimer un ou plusieurs service
< / a >
2018-07-23 09:36:25 +00:00
{% include "preferences/aff_service.html" with service_list=service_list %}
2018-04-16 03:28:27 +00:00
2018-07-23 09:36:25 +00:00
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:edit-options' 'HomeOption' %}" >
2018-07-30 15:00:41 +00:00
< i class = "fa fa-edit" > < / i > Editer
2018-07-23 09:36:25 +00:00
< / a >
2018-06-30 17:19:40 +00:00
2018-08-01 17:07:01 +00:00
< h2 > {% trans "Contact email adresses list" %}< / h2 >
2018-06-30 17:19:40 +00:00
{% can_create preferences.MailContact%}
2018-07-26 19:53:32 +00:00
< a class = "btn btn-primary btn-sm" role = "button" href = "{% url 'preferences:add-mailcontact' %}" > < i class = "fa fa-plus" > < / i > {% trans "Add an adress" %}< / a >
2018-06-30 17:19:40 +00:00
{% acl_end %}
2018-07-26 19:53:32 +00:00
< a class = "btn btn-danger btn-sm" role = "button" href = "{% url 'preferences:del-mailcontact' %}" > < i class = "fa fa-trash" > < / i > {% trans "Delete one or multiple adresses" %}< / a >
2018-06-30 17:19:40 +00:00
{% include "preferences/aff_mailcontact.html" with mailcontact_list=mailcontact_list %}
< p >
2018-07-23 09:36:25 +00:00
< table class = "table table-striped" >
2018-07-30 15:00:41 +00:00
< tr >
< th > Url du compte twitter< / th >
< td > {{ homeoptions.twitter_url }}< / td >
< th > Nom utilisé pour afficher le compte< / th >
< td > {{ homeoptions.twitter_account_name }}< / td >
< / tr >
< tr >
< th > Url du compte facebook< / th >
< td > {{ homeoptions.facebook_url }}< / td >
< / tr >
2018-07-23 09:36:25 +00:00
< / table >
2017-06-25 22:50:55 +00:00
{% endblock %}