aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/messages-info-box/messages-info-box.html
blob: 9c10acead3631a8b5943f5eeb166ab5c87cc42a0 (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
<!-- 
########################################################################################
# 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="MessagesInfoBox">
  <div class="cards-flex-col-h120 white {{ colorClass }}">
  <div class="flex-box">
    <div class="flex-box-1">
      <i class="material-icons">{{ icon }}</i>
    </div>
    <div class="flex-box-2">
      <h5>{{ title }}</h5>
      <p class="active">Total: {{ count }}</p>
      {{#if lastScanTimestamp }}
      <p>Timestamp: {{ lastScanTimestamp }}</p>
      {{/if }}
      <a class="sm-more-details-btn" href="#" data-toggle="modal" data-target="#error">More details</a>
    </div>
  </div>
</div>
</template>