Fixes a small bug with a second border on each monitor panel

This commit is contained in:
Kevin Crider 2013-09-27 17:50:24 -04:00
parent a37e2fc168
commit 516733a50e
1 changed files with 3 additions and 1 deletions

View File

@ -14,12 +14,14 @@
<div class="panel-heading">
<h4><?php echo $this->Html->link($mon['Monitor']['Name'],array('controller' => 'monitors', 'action' => 'view', $mon['Monitor']['Id'])); ?></h4>
</div>
<div class="thumbnail panel-body">
<div class="panel-body">
<div class="thumbnail">
<?php echo $this->Html->image($mon['img']['src'], array(
'alt' => $mon['img']['alt'],
'id' => $mon['img']['id'],
'width' => Configure::read('ZM_WEB_LIST_THUMB_WIDTH')
)); ?>
</div>
<div class="caption">
<p><?php echo $this->Html->link($mon['Monitor']['Function'], array('action' => 'edit', $mon['Monitor']['Id'])); ?></p>
</div>