summaryrefslogtreecommitdiffstats
path: root/modules-available/remoteaccess/templates/edit-settings.html
diff options
context:
space:
mode:
authorSimon Rettberg2022-06-09 11:49:03 +0200
committerSimon Rettberg2022-06-09 11:49:03 +0200
commitbe0f53e0029aff5afdbb49ed4d294c72ee0ccfa2 (patch)
tree2fd6339912a25ab9577998697faf161092e23dbd /modules-available/remoteaccess/templates/edit-settings.html
parent[rebootcontrol] Don't word-wrap in last seen column of subnet table (diff)
downloadslx-admin-be0f53e0029aff5afdbb49ed4d294c72ee0ccfa2.tar.gz
slx-admin-be0f53e0029aff5afdbb49ed4d294c72ee0ccfa2.tar.xz
slx-admin-be0f53e0029aff5afdbb49ed4d294c72ee0ccfa2.zip
[remoteaccess] Track unwakable machines, ignore restricted locations
- Locations that are set to "never" or "only outside business hours" will not be considered during WOL, and not delivered to the guacamole proxy. - If we cannot wake as much machines per remote group as configured, we'll display a little number next to the WOL count setting.
Diffstat (limited to 'modules-available/remoteaccess/templates/edit-settings.html')
-rw-r--r--modules-available/remoteaccess/templates/edit-settings.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules-available/remoteaccess/templates/edit-settings.html b/modules-available/remoteaccess/templates/edit-settings.html
index 21ce3b6e..a14bac45 100644
--- a/modules-available/remoteaccess/templates/edit-settings.html
+++ b/modules-available/remoteaccess/templates/edit-settings.html
@@ -80,9 +80,14 @@
<span class="glyphicon glyphicon-edit"></span>
</a>
</td>
- <td>
+ <td class="input-group">
<input type="number" class="form-control" name="group[{{groupid}}][wolcount]" value="{{wolcount}}"
{{perms.group.edit.disabled}}>
+ {{#unwoken}}
+ <span class="input-group-addon" title="{{lang_wolFailCount}}">
+ <span class="glyphicon glyphicon-remove"></span>{{unwoken}}
+ </span>
+ {{/unwoken}}
</td>
<td>
<input type="text" class="form-control" name="group[{{groupid}}][passwd]" value="{{passwd}}"
@@ -103,4 +108,4 @@
</button>
</div>
<div class="clearfix"></div>
-</form> \ No newline at end of file
+</form>