1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
ash / webui / diagnostics_ui / resources / wifi_info.html [blame]
<style include="diagnostics-shared">
:host {
--divider-horizontal-height: 100%;
}
</style>
<div id="wifiInfoContainer">
<div class="horizontal-data-point-container">
<div class="data-point-container">
<data-point id="ipAddress" header="[[i18n('networkIpAddressLabel')]]"
value="[[network.ipConfig.ipAddress]]"
orientation="horizontal">
</data-point>
<data-point id="ssid" header="[[i18n('networkSsidLabel')]]"
value="[[network.typeProperties.wifi.ssid]]"
orientation="horizontal">
</data-point>
<data-point id="bssid" header="[[i18n('networkBssidLabel')]]"
value="[[network.typeProperties.wifi.bssid]]"
orientation="horizontal">
</data-point>
</div>
<div class="divider-horizontal"></div>
<div class="data-point-container">
<data-point id="security" header="[[i18n('networkSecurityLabel')]]"
value="[[security]]"
orientation="horizontal">
</data-point>
<data-point id="signalStrength"
header="[[i18n('networkSignalStrengthLabel')]]"
value="[[signalStrength]]"
orientation="horizontal">
</data-point>
<data-point id="channel" header="[[i18n('networkChannelLabel')]]"
value="[[getChannelDescription(
network.typeProperties.wifi.frequency)]]"
orientation="horizontal">
</data-point>
</div>
</div>
</div>