user navigation overview: Display whether an item has been shared
refs #5600
This commit is contained in:
parent
335ed8c74f
commit
5eb7267b43
|
@ -18,6 +18,7 @@
|
|||
<thead>
|
||||
<th><?= $this->translate('Navigation'); ?></th>
|
||||
<th style="width: 10em"><?= $this->translate('Type'); ?></th>
|
||||
<th style="width: 5em"><?= $this->translate('Shared'); ?></th>
|
||||
<th style="width: 5em"><?= $this->translate('Remove'); ?></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -34,6 +35,7 @@
|
|||
<td><?= $item->type && isset($types[$item->type])
|
||||
? $this->escape($types[$item->type])
|
||||
: $this->escape($this->translate('Unknown')); ?></td>
|
||||
<td><?= $item->owner ? $this->translate('Yes') : $this->translate('No'); ?></td>
|
||||
<td><?= $this->qlink(
|
||||
'',
|
||||
'navigation/remove',
|
||||
|
|
Loading…
Reference in New Issue