Lines Matching +full:button +full:- +full:uid
3 <h1 class="page-title inline">{{ dataService.hostname }}</h1>
4 …<button class="btn btn-tertiary" ng-click="edit_hostname = !edit_hostname" aria-label="edit host …
5 <icon class="nav-icon" aria-hidden="true" file="icon-edit.svg"></icon>
6 </button>
8 <div class="small-12 large-8">
10 <div class="section-header">
11 <h2 class="section-title h3">Server information</h2>
13 <div class="section-content row">
14 <div class="column large-6">
15 <dl class="list-pair">
19 <dl class="list-pair">
24 <div class="column large-6">
25 <dl class="list-pair">
29 <dl class="list-pair">
38 <div class="section-header">
39 <h2 class="section-title h3">BMC information</h2>
41 <div class="section-content row">
42 <div class="column large-6">
43 <dl class="list-pair">
49 <dl class="list-pair" ng-repeat="(ifaceName,iface) in dataService.network_interfaces">
51 <dd class="courier-bold" ng-repeat="ipv4 in iface.ipv4.values">
54 <dd class="courier-bold" ng-repeat="ipv6 in iface.ipv6.values">
59 <div class="column large-6">
60 <dl class="list-pair" ng-repeat="(ifaceName,iface) in dataService.network_interfaces">
66 <dl class="list-pair">
68 <dd class="courier-bold">{{ bmc_firmware }}</dd>
75 <div class="section-header">
76 <h2 class="section-title h3">Power Consumption</h2>
78 <div class="section-content row">
79 <div class="column large-6">
80 <dl class="list-pair">
82 <dd class="courier-bold">{{ power_consumption }}</dd>
85 <div class="column large-6">
86 <dl class="list-pair">
88 <dd class="courier-bold">{{ power_cap }}</dd>
94 <div class="small-12 large-4">
95 <div class="quick-links">
96 …<a href="#/server-health/event-log/high" class="quick-links__item quick-links__events event-log__e…
97 ng-show="logs.length">
98 <!-- link to event log filtered to the high priority events -->
99 <span class="inline quick-links__event-copy">
103 <dl class="quick-links__item no-icon">
104 <dt class="inline quick-links__label">BMC time</dt>
105 <dd class="bmc-time">{{ bmc_time | localeDate }}</dd>
107 <div class="quick-links__item no-icon">
108 <p class="inline quick-links__label">
109 Turn <span ng-if="dataService.LED_state == 'off'">on</span>
110 <span ng-if="dataService.LED_state == 'on'">off</span> server LED
112 <div class="toggle-container">
114 … <input id="toggle__switch-round" class="toggle-switch toggle-switch__round-flat" type="checkbox"
115 tabindex="0" ng-click="toggleLED()" ng-checked="dataService.LED_state == 'on'"
116 ng-disabled="dataService.server_unreachable" />
117 <label for="toggle__switch-round" tabindex="0">Server LED is
118 <span class="uid-switch__status">{{
127 <a href="#/server-control/remote-console" class="quick-links__item">
128 <span class="inline quick-links__label">Serial over LAN console</span>
129 <icon aria-hidden="true" file="icon-chevron-right.svg"></icon>
131 <a href="#/configuration/network" class="quick-links__item">
132 <span class="inline quick-links__label">Edit network settings</span>
133 <icon aria-hidden="true" file="icon-chevron-right.svg"></icon>
139 <div class="section overview__event-log event-log__events" ng-show="logs.length">
140 <div class="section-header">
141 <h2 class="section-title h3">High priority events ({{ logs.length }})</h2>
142 <a href="#/server-health/event-log/">
147 <!-- single event -->
148 <a href="#/server-health/event-log/high" ng-repeat="event in logs|orderBy:'-Id'|limitTo : 5">
149 <div class="row column event-log__single-event">
151 <!-- click will go to specific event in event log page-->
152 <div class="column small-10 large-11 event-log__event-info" ng-click="">
154 <div class="column large-1 small-1">
157 <div class="column large-4 small-11">
158 <p class="inline event__priority high-priority">High</p>
159 <p class="inline event__severity high-priority">
163 <div class="column large-7 large-offset-0 small-11 small-offset-1">
171 <div class="column large-12 small-11 small-offset-1">
178 <div class="column small-2 large-1">
179 <span class="accord-trigger" aria-hidden="true"></span>
186 <div class="section overview__event-log event-log__events" ng-show="!logs.length">
187 <div class="section-header">
188 <h2 class="section-title h3">High priority events</h2>
190 <p class="section-content">
195 <!-- edit server name modal -->
196 <section class="modal" aria-hidden="true" aria-labelledby="modalTitle" aria-describedby="modalDescr…
197 ng-class="{'active': edit_hostname}">
199 <!-- accessibility only; used for screen readers -->
200 <div class="screen-reader-offscreen modal-description">Edit hostname</div>
201 <div class="page-header ">
202 <h2 class="modal-title">
203 <icon class="icon__info" file="icon-information.svg"></icon>Edit
210 <p class="label__helper-text">
213 …<input id="editServerName" class="modal__edit-server-name" type="text" ng-model="newHostname" ng-t…
214 name="hostname" ng-pattern="/^\S{0,64}$/" required autofocus />
215 …<span class="modal__error" ng-show="edit_hostname_text.hostname.$error.pattern">Invalid format. Re…
217 <span class="modal__char-count"
218 … ng-hide="edit_hostname_text.hostname.$error.pattern">{{ 0 + newHostname.length }}/64</span>
221 <div class="modal__button-wrapper">
222 …<button class="btn btn-secondary" ng-click="edit_hostname= false; newHostname = dataService.hostn…
224 </button>
225 …<button class="btn btn-primary" ng-click="saveHostname(newHostname);" ng-disabled="edit_hostname_…
226 ng-class="{'disabled' : edit_hostname_text.$invalid}">
228 </button>
232 <div class="modal-overlay" tabindex="-1" ng-class="{'active': edit_hostname}"></div>