diff options
author | Simon Rettberg | 2022-06-09 11:49:03 +0200 |
---|---|---|
committer | Simon Rettberg | 2022-06-09 11:49:03 +0200 |
commit | be0f53e0029aff5afdbb49ed4d294c72ee0ccfa2 (patch) | |
tree | 2fd6339912a25ab9577998697faf161092e23dbd /modules-available/remoteaccess/templates | |
parent | [rebootcontrol] Don't word-wrap in last seen column of subnet table (diff) | |
download | slx-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')
-rw-r--r-- | modules-available/remoteaccess/templates/edit-settings.html | 9 |
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> |