mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
30 lines
1.4 KiB
PHP
30 lines
1.4 KiB
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<ul>
|
|
<li>
|
|
<i class="fa fa-folder fa-fw"></i><?= $this->url->link(t('Projects list'), 'project', 'index') ?>
|
|
</li>
|
|
<?php if ($this->user->hasAccess('projectuser', 'managers')): ?>
|
|
<li><i class="fa fa-user fa-fw"></i><?= $this->url->link(t('Users overview'), 'projectuser', 'managers') ?></li>
|
|
<?php endif ?>
|
|
</ul>
|
|
</div>
|
|
<section>
|
|
<?php if (empty($projects)): ?>
|
|
<p class="alert"><?= t('No project') ?></p>
|
|
<?php else: ?>
|
|
<div
|
|
id="gantt-chart"
|
|
data-records='<?= json_encode($projects, JSON_HEX_APOS) ?>'
|
|
data-save-url="<?= $this->url->href('gantt', 'saveProjectDate') ?>"
|
|
data-label-managers="<?= t('Project managers') ?>"
|
|
data-label-members="<?= t('Project members') ?>"
|
|
data-label-gantt-link="<?= t('Gantt chart for this project') ?>"
|
|
data-label-board-link="<?= t('Project board') ?>"
|
|
data-label-start-date="<?= t('Start date:') ?>"
|
|
data-label-end-date="<?= t('End date:') ?>"
|
|
data-label-not-defined="<?= t('There is no start date or end date for this project.') ?>"
|
|
></div>
|
|
<?php endif ?>
|
|
</section>
|
|
</section>
|