1<?php
2
3/**
4 * Observium Network Management and Monitoring System
5 * Copyright (C) 2006-2015, Adam Armstrong - http://www.observium.org
6 *
7 * @package    observium
8 * @subpackage webui
9 * @author     Adam Armstrong <adama@observium.org>
10 * @copyright  (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
11 *
12 */
13
14?>
15  <div class="box box-solid">
16    <div class="box-header ">
17      <a href="<?php echo(generate_url(array('page' => 'device', 'device' => $device['device_id'], 'tab' => 'logs', 'section' => 'syslog'))); ?>">
18        <i class="<?php echo $config['icon']['alert']; ?>"></i><h3 class="box-title">Alerts</h3>
19      </a>
20    </div>
21    <div class="box-body no-padding">
22      <?php print_alert_table(array('device' => $device['device_id'], 'short' => TRUE, 'pagesize' => 10, 'status' => 'failed', 'no_header' => TRUE)); ?>
23    </div>
24  </div>
25
26<?php
27
28// EOF
29