mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
7 lines
No EOL
294 B
PHP
7 lines
No EOL
294 B
PHP
<?php if (! empty($roles[$role])): ?>
|
|
<ul class="no-bullet">
|
|
<?php foreach ($roles[$role] as $user_id => $user_name): ?>
|
|
<li><?= $this->url->link($this->e($user_name), 'projectuser', 'opens', array('user_id' => $user_id)) ?></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
<?php endif ?>
|