summaryrefslogtreecommitdiffstats
path: root/modules-available/remoteaccess/templates/edit-settings.html
diff options
context:
space:
mode:
authorSimon Rettberg2022-12-08 15:46:50 +0100
committerSimon Rettberg2022-12-08 15:46:50 +0100
commitacd63d1b88bf8605b3ef0f05ce9a2e25e10abcd0 (patch)
treeddb3bd392fe4cec3634fd740964a4c2bef39eff8 /modules-available/remoteaccess/templates/edit-settings.html
parent[statistics] Add ID45 partition size filter (diff)
downloadslx-admin-acd63d1b88bf8605b3ef0f05ce9a2e25e10abcd0.tar.gz
slx-admin-acd63d1b88bf8605b3ef0f05ce9a2e25e10abcd0.tar.xz
slx-admin-acd63d1b88bf8605b3ef0f05ce9a2e25e10abcd0.zip
[remoteaccess] Add list of active locations to overview page
References #3767
Diffstat (limited to 'modules-available/remoteaccess/templates/edit-settings.html')
-rw-r--r--modules-available/remoteaccess/templates/edit-settings.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules-available/remoteaccess/templates/edit-settings.html b/modules-available/remoteaccess/templates/edit-settings.html
index a14bac45..4c4c011a 100644
--- a/modules-available/remoteaccess/templates/edit-settings.html
+++ b/modules-available/remoteaccess/templates/edit-settings.html
@@ -109,3 +109,34 @@
</div>
<div class="clearfix"></div>
</form>
+
+<h3>{{lang_locations}}</h3>
+
+<p>{{lang_locationsInUse}}</p>
+
+<table class="table">
+ <thead>
+ <tr>
+ <th>{{lang_location}}</th>
+ <th>{{lang_groups}}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{#locations}}
+ <tr>
+ <td class="{{lclass}}">
+ {{locationname}}
+ {{#ra_never}}
+ <span class="glyphicon glyphicon-remove text-danger" title="{{lang_roomRemoteAccessDisabled}}"></span>
+ {{/ra_never}}
+ {{#ra_selective}}
+ <span class="glyphicon glyphicon-time text-danger" title="{{lang_roomRemoteAccessWhenClosed}}"></span>
+ {{/ra_selective}}
+ </td>
+ <td>{{#groups}}
+ [<a class="{{gclass}}" href="?do=remoteaccess&amp;groupid={{groupid}}">{{groupname}}</a>]
+ {{/groups}}</td>
+ </tr>
+ {{/locations}}
+ </tbody>
+</table> \ No newline at end of file