show/activitylog: add more details
This commit is contained in:
parent
c2b0e48c7f
commit
7315cc0d1b
|
@ -37,7 +37,19 @@ $url = $this->url()->without('checksum')->without('show');
|
||||||
<th><?= $this->translate('Date') ?></th>
|
<th><?= $this->translate('Date') ?></th>
|
||||||
<td><?= $this->entry->change_time ?></td>
|
<td><?= $this->entry->change_time ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th><?= $this->translate('Action') ?></th>
|
||||||
|
<td><?= sprintf(
|
||||||
|
'%s %s "%s"',
|
||||||
|
$this->entry->action_name,
|
||||||
|
$this->entry->object_type,
|
||||||
|
$this->entry->object_name
|
||||||
|
)
|
||||||
|
?></td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<?php if (! empty($this->output)): ?>
|
||||||
<h1><?= $this->escape($this->title) ?></h1>
|
<h1><?= $this->escape($this->title) ?></h1>
|
||||||
<?= $this->output ?>
|
<?= $this->output ?>
|
||||||
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue