Add a better time format for downtime
This commit is contained in:
parent
cf997e998f
commit
c73b291cf4
|
@ -29,7 +29,16 @@
|
||||||
<td class="state">
|
<td class="state">
|
||||||
<strong><?= $downtime->is_in_effect ? $this->translate('Expires') : $this->translate('Starts'); ?></strong>
|
<strong><?= $downtime->is_in_effect ? $this->translate('Expires') : $this->translate('Starts'); ?></strong>
|
||||||
<br>
|
<br>
|
||||||
<?= $this->prefixedTimeUntil($downtime->is_in_effect ? $downtime->end : $downtime->start); ?>
|
<?=
|
||||||
|
$this->dateTimeRenderer(
|
||||||
|
($downtime->is_in_effect ? $downtime->end : $downtime->start),
|
||||||
|
true
|
||||||
|
)->render(
|
||||||
|
$this->translate('on %s', 'datetime'),
|
||||||
|
$this->translate('at %s', 'time'),
|
||||||
|
$this->translate('in %s', 'timespan')
|
||||||
|
);
|
||||||
|
?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?php if (isset($downtime->service)): ?>
|
<?php if (isset($downtime->service)): ?>
|
||||||
|
|
Loading…
Reference in New Issue