diff --git a/templates/web/fr/create_accounts.tt2.html b/templates/web/fr/create_accounts.tt2.html index 2db3452df718d6ccddf78f3636ed62eda314cb60..162a6282a7a2ce6ff7a07c64f0896b41f8e696a6 100644 --- a/templates/web/fr/create_accounts.tt2.html +++ b/templates/web/fr/create_accounts.tt2.html @@ -51,9 +51,14 @@ service fédéré. Pour le faire, sélectionnez <strong>[% idp_displayname <div> <table> <caption>Liste des attributs utilisateur</caption> - [% FOREACH attribute IN [ 'cn', 'displayName', 'givenName', 'sn', 'mail', 'schacHomeOrganization', 'schacHomeOrganizationType', 'eduPersonPrincipalName', 'eduPersonAffiliation', 'eduPersonScopedAffiliation' ] -%] + [% FOREACH attribute IN [ 'cn', 'displayName', 'givenName', 'sn', 'mail', 'schacHomeOrganization', 'schacHomeOrganizationType', 'eduPersonPrincipalName' ] -%] <tr> - <th>[% attribute %]</th><td> [% account.$attribute %]</td> + <th>[% attribute %]</th><td> [% account.$attribute() %]</td> + </tr> + [% END %] + [% FOREACH attribute IN [ 'eduPersonAffiliation', 'eduPersonScopedAffiliation' ] -%] + <tr> + <th>[% attribute %]</th><td> [% account.$attribute().join(', ') %]</td> </tr> [% END %] <tr>