aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/network-info-box/network-info-box.html
blob: b9e07f275bcd116c8e1577784db849cbcf7f3c3a (plain)
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
<!-- 
########################################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others #
#                                                                                      #
# All rights reserved. This program and the accompanying materials                     #
# are made available under the terms of the Apache License, Version 2.0                #
# which accompanies this distribution, and is available at                             #
# http://www.apache.org/licenses/LICENSE-2.0                                           #
########################################################################################
 -->
<template name="NetworkInfoBox">
  <div class="cards-450 white flex-box-1">
    <div class="flex-box ">
      <div class="flex-box-1">
        <i class="material-icons">device_hub</i>
      </div>
      <div class="flex-box-2">
        <h3>Network name:<br> {{ network.name }}</h3>
      <table class="table table-striped">
        <tbody>
          <tr>
            <th>Last Scanning</th>
            <td></td>
          </tr>
          <tr>
            <th>Ports count</th>
            <td>{{ portsCount }}</td>
          </tr>
          <tr>
            <th>Instaces</th>
            <td></td>
          </tr>
        </tbody>
      </table>
      </div>
    </div>
  </div>
</template>