mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
45 lines
No EOL
1.7 KiB
PHP
45 lines
No EOL
1.7 KiB
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<ul>
|
|
<li>
|
|
<span class="dropdown">
|
|
<span>
|
|
<i class="fa fa-caret-down"></i> <a href="#" class="dropdown-menu"><?= t('Actions') ?></a>
|
|
<ul>
|
|
<?= $this->render('project/dropdown', array('project' => $project)) ?>
|
|
</ul>
|
|
</span>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<i class="fa fa-th fa-fw"></i>
|
|
<?= $this->url->link(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?>
|
|
</li>
|
|
<li>
|
|
<i class="fa fa-calendar fa-fw"></i>
|
|
<?= $this->url->link(t('Back to the calendar'), 'calendar', 'show', array('project_id' => $project['id'])) ?>
|
|
</li>
|
|
<?php if ($this->user->isManager($project['id'])): ?>
|
|
<li>
|
|
<i class="fa fa-cog fa-fw"></i>
|
|
<?= $this->url->link(t('Project settings'), 'project', 'show', array('project_id' => $project['id'])) ?>
|
|
</li>
|
|
<?php endif ?>
|
|
<li>
|
|
<i class="fa fa-folder fa-fw"></i>
|
|
<?= $this->url->link(t('All projects'), 'project', 'index') ?>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<section class="sidebar-container" id="analytic-section">
|
|
|
|
<?= $this->render('analytic/sidebar', array('project' => $project)) ?>
|
|
|
|
<div class="sidebar-content">
|
|
<?= $content_for_sublayout ?>
|
|
</div>
|
|
</section>
|
|
</section>
|
|
|
|
<?= $this->asset->js('assets/js/vendor/d3.v3.min.js') ?>
|
|
<?= $this->asset->js('assets/js/vendor/c3.min.js') ?>
|