Gunnar Mills | 4129f40 | 2018-07-11 16:40:58 -0500 | [diff] [blame] | 1 | <div id="led-switch"> |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 2 | <div class="row column"> |
Michael Davis | 040a9dc | 2017-07-10 17:53:48 -0500 | [diff] [blame] | 3 | <h1>Server LED</h1> |
Michael Davis | 706b75b | 2017-08-18 16:40:03 -0500 | [diff] [blame] | 4 | <div class="page-header"> |
beccabroek | edf1ab4 | 2019-02-15 16:26:38 -0600 | [diff] [blame] | 5 | <h2>LED light control</h2> |
Michael Davis | 706b75b | 2017-08-18 16:40:03 -0500 | [diff] [blame] | 6 | </div> |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 7 | </div> |
| 8 | |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 9 | <div class="row column" ng-class="{disabled: dataService.server_unreachable || dataService.loading}"> |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 10 | <div class="btm-border-grey"> |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 11 | <div class="toggle inline"> |
Michael Davis | c562618 | 2017-03-10 15:48:05 -0600 | [diff] [blame] | 12 | <input id="toggle__switch-round" |
| 13 | class="toggle-switch toggle-switch__round-flat" |
| 14 | type="checkbox" |
| 15 | tabindex="0" |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 16 | ng-click="toggleLED()" |
| 17 | ng-checked="dataService.LED_state == 'on'" |
| 18 | ng-disabled="dataService.server_unreachable" |
Michael Davis | c562618 | 2017-03-10 15:48:05 -0600 | [diff] [blame] | 19 | > |
Gunnar Mills | 4129f40 | 2018-07-11 16:40:58 -0500 | [diff] [blame] | 20 | <label for="toggle__switch-round" tabindex="0">Server indicator is <span class="led-switch__status">{{dataService.LED_state}}</span></label> |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 21 | </div> |
Gunnar Mills | 4129f40 | 2018-07-11 16:40:58 -0500 | [diff] [blame] | 22 | <div class="led-switch__label inline"> |
| 23 | <p>Server LED light is <span class="led-switch__status">{{dataService.LED_state}}</span></p> |
Michael Davis | 7378f8a | 2017-07-20 17:05:35 -0500 | [diff] [blame] | 24 | <p>Turn the LED light on or off. If the server has an LCD, use this control to display text (on) or not to display text (off) on the LCD.</p> |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 25 | </div> |
| 26 | </div> |
| 27 | </div> |
Gunnar Mills | 4129f40 | 2018-07-11 16:40:58 -0500 | [diff] [blame] | 28 | </div> |