mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 01:04:09 +02:00
monitoring: Display host and service names using the display_name column in the downtimes overview
refs #7843
This commit is contained in:
parent
ab6eed03e5
commit
86cc56afe6
@ -57,16 +57,16 @@ use Icinga\Module\Monitoring\Object\Service;
|
|||||||
'host' => $downtime->host,
|
'host' => $downtime->host,
|
||||||
'service' => $downtime->service
|
'service' => $downtime->service
|
||||||
)); ?>">
|
)); ?>">
|
||||||
<?= $this->escape($downtime->service) ?>
|
<?= $this->escape($downtime->service_display_name) ?>
|
||||||
</a>
|
</a>
|
||||||
<small>
|
<small>
|
||||||
<?= $this->translate('on'); ?> <?= $this->escape($downtime->host) ?>
|
<?= $this->translate('on'); ?> <?= $this->escape($downtime->host_display_name) ?>
|
||||||
</small>
|
</small>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?= $this->icon('host'); ?> <a href="<?= $this->href('monitoring/host/show', array(
|
<?= $this->icon('host'); ?> <a href="<?= $this->href('monitoring/host/show', array(
|
||||||
'host' => $downtime->host
|
'host' => $downtime->host
|
||||||
)); ?>">
|
)); ?>">
|
||||||
<?= $this->escape($downtime->host) ?>
|
<?= $this->escape($downtime->host_display_name) ?>
|
||||||
</a>
|
</a>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<br>
|
<br>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user