Skip to content

Commit

Permalink
monitoring/CSS: Use new state- classes in the host detail
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 25, 2015
1 parent 204cb4c commit cfee0cc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -3,8 +3,8 @@ use Icinga\Module\Monitoring\Object\Host;
/** @var Host $object */
?>
<table>
<tr class="state <?= Host::getStateText($object->host_state); ?><?= $object->host_handled ? ' handled' : ''; ?>">
<td class="state">
<tr>
<td class="state-col state <?= Host::getStateText($object->host_state); ?><?= $object->host_handled ? ' handled' : ''; ?>">
<strong><?= Host::getStateText($object->host_state, true); ?></strong><br>
<?= $this->timeSince($object->host_last_state_change); ?>
</td>
Expand Down

0 comments on commit cfee0cc

Please sign in to comment.