show/activitylog: show whether object has been...

...enabled or disabled, regardless of how it is rendered
This commit is contained in:
Thomas Gelf 2016-05-25 15:35:55 +02:00
parent 757de240ed
commit 6dee2d0733

View File

@ -57,6 +57,18 @@ $url = $this->url()->without('checksum')->without('show');
)
?></td>
</tr>
<?php endif ?>
<?php if ($this->hasBeenEnabled): ?>
<tr>
<th><?= $this->translate('Rendering') ?></th>
<td><?= $this->translate('This object has been enabled') ?></td>
</tr>
<?php endif ?>
<?php if ($this->hasBeenDisabled): ?>
<tr>
<th><?= $this->translate('Rendering') ?></th>
<td><?= $this->translate('This object has been disabled') ?></td>
</tr>
<?php endif ?>
<tr>
<th><?= $this->translate('Checksum') ?></th>