[Web] rename role mapping to attribute mapping
This commit is contained in:
@@ -50,15 +50,15 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-2">
|
||||
<label class="control-label col-sm-3 text-sm-end" for="iam_version">{{ lang.admin.iam_rolemapping }}:</label>
|
||||
<label class="control-label col-sm-3 text-sm-end" for="iam_version">{{ lang.admin.iam_mapping }}:</label>
|
||||
<div class="col-4 d-flex mb-2">
|
||||
<span class="w-100 me-2">Role</span>
|
||||
<span class="w-100 me-2">Attribute</span>
|
||||
<span class="w-100 ms-2">Template</span>
|
||||
<button id="iam_rolemap_add" class="btn btn-sm d-block d-sm-inline btn-secondary ms-2"><i class="bi bi-plus-lg"></i></button>
|
||||
</div>
|
||||
{% for key, role in identity_provider_settings.roles %}
|
||||
{% for key, role in identity_provider_settings.mappers %}
|
||||
<div class="offset-sm-3 col-4 d-flex mb-2">
|
||||
<input type="text" class="form-control me-2" name="roles" value="{{ identity_provider_settings.roles[key] }}">
|
||||
<input type="text" class="form-control me-2" name="mappers" value="{{ identity_provider_settings.mappers[key] }}">
|
||||
<select data-live-search="true" name="templates" class="form-control" title="{{ lang.mailbox.template }}">
|
||||
{% for mbox_template in mbox_templates %}
|
||||
<option{% if mbox_template.template == identity_provider_settings.templates[key] %} selected{% endif %}>
|
||||
@@ -70,7 +70,7 @@
|
||||
</div>
|
||||
{% endfor %}
|
||||
<div class="offset-sm-3 col-4 d-flex mb-2">
|
||||
<input type="text" class="form-control me-2" name="roles" value="">
|
||||
<input type="text" class="form-control me-2" name="mappers" value="">
|
||||
<select data-live-search="true" name="templates" class="form-control" title="{{ lang.mailbox.template }}">
|
||||
{% for mbox_template in mbox_templates %}
|
||||
<option>
|
||||
|
Reference in New Issue
Block a user