mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
19 lines
1.2 KiB
PHP
19 lines
1.2 KiB
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<?php if ($this->user->hasAccess('UserCreationController', 'show')): ?>
|
|
<ul>
|
|
<li><i class="fa fa-user fa-fw"></i><?= $this->url->link(t('All users'), 'UserListController', 'show') ?></li>
|
|
<li><i class="fa fa-plus fa-fw"></i><?= $this->url->link(t('New local user'), 'UserCreationController', 'show', array(), false, 'popover') ?></li>
|
|
<li><i class="fa fa-plus fa-fw"></i><?= $this->url->link(t('New remote user'), 'UserCreationController', 'show', array('remote' => 1), false, 'popover') ?></li>
|
|
<li><i class="fa fa-upload fa-fw"></i><?= $this->url->link(t('Import'), 'UserImportController', 'show', array(), false, 'popover') ?></li>
|
|
<li><i class="fa fa-users fa-fw"></i><?= $this->url->link(t('View all groups'), 'GroupListController', 'index') ?></li>
|
|
</ul>
|
|
<?php endif ?>
|
|
</div>
|
|
<section class="sidebar-container" id="user-section">
|
|
<?= $this->render('user_view/sidebar', array('user' => $user)) ?>
|
|
<div class="sidebar-content">
|
|
<?= $content_for_sublayout ?>
|
|
</div>
|
|
</section>
|
|
</section>
|