blob: 5c1fcfb02283e00a6d77b618ffab11ee04a89fdd (
plain)
1
2
3
4
5
6
|
<?php if ($task['owner_ms'] > 0 && count($this->task->multiselectMemberModel->getMembers($task['owner_ms'])) > 0) : ?>
<li>
<strong><?= t('Other Assignees:') ?></strong>
</li>
<?= $this->helper->smallAvatarHelperExtend->smallMultiple($task['owner_ms'], 'avatar-inline') ?>
<?php endif ?>
|