parent
4b458fd719
commit
ba9d286567
|
@ -26,14 +26,10 @@ use Icinga\Module\Monitoring\Object\Host;
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?= $this->hostFlags($object) ?>
|
<?= $this->hostFlags($object) ?>
|
||||||
<?php if ($object->host_address6 && $object->host_address6 !== $object->host_name): ?>
|
<?php if ($object->host_address6 && $object->host_address6 !== $object->host_name): ?>
|
||||||
<div class="selectable host-meta" title="<?= $this->translate('IPv6 address') ?>">
|
<div class="selectable host-meta" title="<?= $this->translate('IPv6 address') ?>"><?= $this->escape($object->host_address6) ?></div>
|
||||||
<?= $this->escape($object->host_address6) ?>
|
|
||||||
</div>
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
|
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
|
||||||
<div class="selectable host-meta" title="<?= $this->translate('IPv4 address') ?>">
|
<div class="selectable host-meta" title="<?= $this->translate('IPv4 address') ?>"><?= $this->escape($object->host_address) ?></div>
|
||||||
<?= $this->escape($object->host_address) ?>
|
|
||||||
</div>
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -22,14 +22,10 @@ use Icinga\Module\Monitoring\Object\Service;
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?= $this->hostFlags($object) ?>
|
<?= $this->hostFlags($object) ?>
|
||||||
<?php if ($object->host_address6 && $object->host_address6 !== $object->host_name): ?>
|
<?php if ($object->host_address6 && $object->host_address6 !== $object->host_name): ?>
|
||||||
<div class="selectable host-meta" title="<?= $this->translate('IPv6 address') ?>">
|
<div class="selectable host-meta" title="<?= $this->translate('IPv6 address') ?>"><?= $this->escape($object->host_address6) ?></div>
|
||||||
<?= $this->escape($object->host_address6) ?>
|
|
||||||
</div>
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
|
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
|
||||||
<div class="selectable host-meta" title="<?= $this->translate('IPv4 address') ?>">
|
<div class="selectable host-meta" title="<?= $this->translate('IPv4 address') ?>"><?= $this->escape($object->host_address) ?></div>
|
||||||
<?= $this->escape($object->host_address) ?>
|
|
||||||
</div>
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue