forked from ScoDoc/ScoDoc
84 lines
3.0 KiB
Django/Jinja
84 lines
3.0 KiB
Django/Jinja
{% extends "base.j2" %}
|
||
{% import 'wtf.j2' as wtf %}
|
||
|
||
|
||
{% block styles %}
|
||
{{super()}}
|
||
<style>
|
||
div.checkbox label { font-weight: normal; }
|
||
</style>
|
||
{% endblock %}
|
||
|
||
{% block app_content %}
|
||
<h1>Configuration du Service d'Authentification Central (CAS)</h1>
|
||
|
||
|
||
<div class="help">
|
||
<p>Le CAS permet d'utiliser un service SSO pour connecter les utilisateurs.</p>
|
||
</div>
|
||
<div class="row">
|
||
<div class="col-md-8">
|
||
|
||
<form class="form form-horizontal" method="post" enctype="multipart/form-data" role="form">
|
||
{{ form.hidden_tag() }}
|
||
{{ wtf.form_errors(form, hiddens="only") }}
|
||
|
||
{{ wtf.form_field(form.cas_enable) }}
|
||
{{ wtf.form_field(form.cas_force) }}
|
||
{{ wtf.form_field(form.cas_allow_for_new_users) }}
|
||
<div class="scobox">
|
||
<div class="scobox-title">Routes CAS</div>
|
||
{{ wtf.form_field(form.cas_server) }}
|
||
{{ wtf.form_field(form.cas_login_route) }}
|
||
{{ wtf.form_field(form.cas_logout_route) }}
|
||
{{ wtf.form_field(form.cas_validate_route) }}
|
||
</div>
|
||
<div class="scobox">
|
||
{{ wtf.form_field(form.cas_attribute_id) }}
|
||
</div>
|
||
<div class="scobox">
|
||
<div class="scobox-title">Identifiant utilisateur CAS</div>
|
||
<div class="help explanation">
|
||
Ces paramètres sont utilisés pour déduire
|
||
l'identifiant CAS des utilisateurs ScoDoc au moment de la création ou modification
|
||
de comptes utilisateurs. Pour modifier les comptes existants en masse, il peut être
|
||
pratique de passer par un
|
||
<a class="stdlink" href="{{ url_for('auth.cas_users_import_config') }}">export/import excel</a>.
|
||
</div>
|
||
{{ wtf.form_field(form.cas_uid_from_mail_regexp) }}
|
||
{{ wtf.form_field(form.cas_uid_use_scodoc) }}
|
||
</div>
|
||
<div class="scobox">
|
||
{{ wtf.form_field(form.cas_edt_id_from_xml_regexp) }}
|
||
</div>
|
||
<div class="scobox cas_settings">
|
||
<div class="scobox-title">Certificat serveur CAS</div>
|
||
{{ wtf.form_field(form.cas_ssl_verify) }}
|
||
{{ wtf.form_field(form.cas_ssl_certificate_file) }}
|
||
<div class="cas_etat_certif_ssl">Certificat SSL
|
||
{% if cas_ssl_certificate_loaded %}
|
||
chargé.
|
||
{% else %}
|
||
non chargé.
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
{{ wtf.form_field(form.submit) }}
|
||
{{ wtf.form_field(form.cancel) }}
|
||
</div>
|
||
<div class="form-group" style="margin-top:16px;">
|
||
ℹ️ <em>Note: si le CAS est forcé, le super-admin et les utilisateurs autorisés
|
||
à "se connecter via ScoDoc" pourront toujours se
|
||
connecter via l'adresse spéciale</em>
|
||
<tt style="color: blue;">{{url_for("auth.login_scodoc", _external=True)}}</tt>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
{% endblock %}
|