shared navigation overview: Display the owner of a shared navigation item

refs #5600
This commit is contained in:
Johannes Meyer 2015-09-16 11:52:42 +02:00
parent fc5f0f0530
commit 5d9a57446f
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
<table class="action alternating"> <table class="action alternating">
<thead> <thead>
<th><?= $this->translate('Shared Navigation'); ?></th> <th><?= $this->translate('Shared Navigation'); ?></th>
<th style="width: 10em"><?= $this->translate('Owner'); ?></th>
<th style="width: 5em"><?= $this->translate('Remove'); ?></th> <th style="width: 5em"><?= $this->translate('Remove'); ?></th>
</thead> </thead>
<tbody> <tbody>
@ -20,6 +21,7 @@
'title' => sprintf($this->translate('Edit shared navigation item %s'), $name) 'title' => sprintf($this->translate('Edit shared navigation item %s'), $name)
) )
); ?></td> ); ?></td>
<td><?= $this->escape($item->owner); ?></td>
<td><?= $removeForm->setDefault('name', $name); ?></td> <td><?= $removeForm->setDefault('name', $name); ?></td>
</tr> </tr>
<?php endforeach ?> <?php endforeach ?>