Add global Gantt chart for all projects
This commit is contained in:
36
app/Template/gantt/projects.php
Normal file
36
app/Template/gantt/projects.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<section id="main">
|
||||
<div class="page-header">
|
||||
<ul>
|
||||
<?php if ($this->user->isProjectAdmin() || $this->user->isAdmin()): ?>
|
||||
<li><i class="fa fa-plus fa-fw"></i><?= $this->url->link(t('New project'), 'project', 'create') ?></li>
|
||||
<?php endif ?>
|
||||
<li>
|
||||
<i class="fa fa-lock fa-fw"></i><?= $this->url->link(t('New private project'), 'project', 'create', array('private' => 1)) ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-folder fa-fw"></i><?= $this->url->link(t('Projects list'), 'project', 'index') ?>
|
||||
</li>
|
||||
<?php if ($this->user->isProjectAdmin() || $this->user->isAdmin()): ?>
|
||||
<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>
|
||||
Reference in New Issue
Block a user