diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-28 14:29:07 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-28 14:29:07 -0400 |
commit | 9e218032c485b7ab6ef8e00f45890151988b0f90 (patch) | |
tree | 6eb1d18b2228c792620cc2b0233fa4e86c7182d7 /app/Template/task_gantt | |
parent | 8d12e2fe736a72d6ad69807ac853a7e325c8cbf3 (diff) |
Split Gantt controller
Diffstat (limited to 'app/Template/task_gantt')
-rw-r--r-- | app/Template/task_gantt/show.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/Template/task_gantt/show.php b/app/Template/task_gantt/show.php new file mode 100644 index 00000000..c5d338fb --- /dev/null +++ b/app/Template/task_gantt/show.php @@ -0,0 +1,34 @@ +<section id="main"> + <?= $this->projectHeader->render($project, 'TaskGanttController', 'show') ?> + <div class="menu-inline"> + <ul> + <li <?= $sorting === 'board' ? 'class="active"' : '' ?>> + <i class="fa fa-sort-numeric-asc fa-fw"></i> + <?= $this->url->link(t('Sort by position'), 'TaskGanttController', 'show', array('project_id' => $project['id'], 'sorting' => 'board')) ?> + </li> + <li <?= $sorting === 'date' ? 'class="active"' : '' ?>> + <i class="fa fa-sort-amount-asc fa-fw"></i> + <?= $this->url->link(t('Sort by date'), 'TaskGanttController', 'show', array('project_id' => $project['id'], 'sorting' => 'date')) ?> + </li> + <li> + <i class="fa fa-plus fa-fw"></i> + <?= $this->url->link(t('Add task'), 'TaskGanttCreationController', 'show', array('project_id' => $project['id']), false, 'popover') ?> + </li> + </ul> + </div> + + <?php if (! empty($tasks)): ?> + <div + id="gantt-chart" + data-records='<?= json_encode($tasks, JSON_HEX_APOS) ?>' + data-save-url="<?= $this->url->href('TaskGanttController', 'save', array('project_id' => $project['id'])) ?>" + data-label-start-date="<?= t('Start date:') ?>" + data-label-end-date="<?= t('Due date:') ?>" + data-label-assignee="<?= t('Assignee:') ?>" + data-label-not-defined="<?= t('There is no start date or due date for this task.') ?>" + ></div> + <p class="alert alert-info"><?= t('Moving or resizing a task will change the start and due date of the task.') ?></p> + <?php else: ?> + <p class="alert"><?= t('There is no task in your project.') ?></p> + <?php endif ?> +</section> |