diff options
author | Udo Walter | 2017-12-14 14:08:07 +0100 |
---|---|---|
committer | Udo Walter | 2017-12-14 14:08:07 +0100 |
commit | 4b58c9e80aec4121426da99da7e7c3ca99545aaf (patch) | |
tree | 02e8f9ad6a0f8016817a2b35aceab5b27c85a284 /modules-available/webinterface/templates | |
parent | [permissionmanager] removed alert from roleeditor (diff) | |
download | slx-admin-4b58c9e80aec4121426da99da7e7c3ca99545aaf.tar.gz slx-admin-4b58c9e80aec4121426da99da7e7c3ca99545aaf.tar.xz slx-admin-4b58c9e80aec4121426da99da7e7c3ca99545aaf.zip |
[webinterface] added permissions to edit https, password and design settings
Diffstat (limited to 'modules-available/webinterface/templates')
3 files changed, 3 insertions, 3 deletions
diff --git a/modules-available/webinterface/templates/customization.html b/modules-available/webinterface/templates/customization.html index c949c1f2..ad57eea7 100644 --- a/modules-available/webinterface/templates/customization.html +++ b/modules-available/webinterface/templates/customization.html @@ -1,7 +1,7 @@ <form action="?do=WebInterface" method="post"> <input type="hidden" name="token" value="{{token}}"> <input type="hidden" name="action" value="customization"> - <div class="panel panel-default"> + <div class="panel panel-default {{^editAllowed}}disabledPanel{{/editAllowed}}"> <div class="panel-heading">{{lang_customization}}</div> <div class="panel-body"> <p>{{lang_customizationDesc}}</p> diff --git a/modules-available/webinterface/templates/https.html b/modules-available/webinterface/templates/https.html index f0accb57..a212cce3 100644 --- a/modules-available/webinterface/templates/https.html +++ b/modules-available/webinterface/templates/https.html @@ -1,7 +1,7 @@ <form action="?do=WebInterface" method="post"> <input type="hidden" name="token" value="{{token}}"> <input type="hidden" name="action" value="https"> - <div class="panel panel-default"> + <div class="panel panel-default {{^editAllowed}}disabledPanel{{/editAllowed}}"> <div class="panel-heading">{{lang_httpsSettings}}</div> <div class="panel-body"> <p>{{lang_httpsDescription}}</p> diff --git a/modules-available/webinterface/templates/passwords.html b/modules-available/webinterface/templates/passwords.html index e190bb72..1d73c172 100644 --- a/modules-available/webinterface/templates/passwords.html +++ b/modules-available/webinterface/templates/passwords.html @@ -1,7 +1,7 @@ <form action="?do=WebInterface" method="post"> <input type="hidden" name="token" value="{{token}}"> <input type="hidden" name="action" value="password"> - <div class="panel panel-default"> + <div class="panel panel-default {{^editAllowed}}disabledPanel{{/editAllowed}}"> <div class="panel-heading">{{lang_passwordFields}}</div> <div class="panel-body"> <p>{{lang_passwordsDescription}}</p> |