Projet

Général

Profil

0001-auth_saml-add-explanations-on-each-configuration-tab.patch

Valentin Deniaud, 15 septembre 2022 17:28

Télécharger (1,91 ko)

Voir les différences:

Subject: [PATCH] auth_saml: add explanations on each configuration tabs
 (#68804)

 .../templates/authentic2_auth_saml/authenticator_detail.html   | 3 +++
 1 file changed, 3 insertions(+)
src/authentic2_auth_saml/templates/authentic2_auth_saml/authenticator_detail.html
19 19

  
20 20
{% block extra-tab-list %}
21 21
  <div aria-labelledby="tab-samlattributelookup" hidden="" id="panel-samlattributelookup" role="tabpanel" tabindex="0">
22
    <p>{% trans "This tab allows defining on which attributes the link with an account of the identity provider will be established." %}</p>
22 23
    {% include 'authentic2_auth_saml/related_object_list.html' with object_list=object.attribute_lookups.all model_name='samlattributelookup' %}
23 24
  </div>
24 25

  
25 26
  <div aria-labelledby="tab-setattributeaction" hidden="" id="panel-setattributeaction" role="tabpanel" tabindex="0">
27
    <p>{% trans "This tab allows setting user fields from received SAML attributes." %}</p>
26 28
    {% include 'authentic2_auth_saml/related_object_list.html' with object_list=object.set_attribute_actions.all model_name='setattributeaction' %}
27 29
  </div>
28 30

  
29 31
  <div aria-labelledby="tab-addroleaction" hidden="" id="panel-addroleaction" role="tabpanel" tabindex="0">
32
    <p>{% trans "This tab allows adding roles to users on successful login." %}</p>
30 33
    {% include 'authentic2_auth_saml/related_object_list.html' with object_list=object.add_role_actions.all model_name='addroleaction' %}
31 34
  </div>
32 35
{% endblock %}
33
-