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
   41
   42
   43
   44
   45
   46
   47

ash / webui / diagnostics_ui / resources / cellular_info.html [blame]

<style include="diagnostics-shared">
  :host {
    --divider-horizontal-height: 100%;
  }
</style>
<div id="cellularInfoContainer">
  <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="technology" header="[[i18n('networkTechnologyLabel')]]"
          value="[[computeNetworkTechnologyText(
            network.typeProperties.cellular.networkTechnology)]]"
          orientation="horizontal">
      </data-point>
      <data-point id="roaming" header="[[i18n('networkRoamingStateLabel')]]"
          value="[[computeRoamingText(
              network.typeProperties.cellular.roaming,
              network.typeProperties.cellular.roamingState)]]"
          orientation="horizontal">
      </data-point>
      <data-point id="signalStrength" header="[[i18n('networkSignalStrengthLabel')]]"
          value="[[computeSignalStrength(
            network.typeProperties.cellular.signalStrength)]]"
          orientation="horizontal">
      </data-point>
    </div>
    <div class="divider-horizontal"></div>
    <div class="data-point-container">
      <data-point id="simLocked" header="[[i18n('networkSimLockStatusLabel')]]"
        value="[[computeSimLockedText(
            network.typeProperties.cellular.simLocked)]]"
        orientation="horizontal">
      </data-point>
      <data-point id="iccid" header="[[i18n('networkIccidLabel')]]"
          value="[[network.typeProperties.cellular.iccid]]"
          orientation="horizontal">
      </data-point>
      <data-point id="eid" header="[[i18n('networkEidLabel')]]"
          value="[[network.typeProperties.cellular.eid]]"
          orientation="horizontal">
      </data-point>
    </div>
  </div>
</div>