diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2014-10-11 21:11:10 -0400 |
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-11 21:11:10 -0400 |
| commit | acba6839a6082e3e3800a733f8baea7c843fc02e (patch) | |
| tree | e2847dcd13d9ccc3d8f0f6f936a5776df852e11b /app/Templates/task_show.php | |
| parent | a8418afdebe92dde495bc5010645779c73939b7b (diff) | |
Add 3 new fields for tasks: start date, time estimated and time spent
Diffstat (limited to 'app/Templates/task_show.php')
| -rw-r--r-- | app/Templates/task_show.php | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/app/Templates/task_show.php b/app/Templates/task_show.php index ece4c57c..0964a8f0 100644 --- a/app/Templates/task_show.php +++ b/app/Templates/task_show.php @@ -1,14 +1,7 @@ - <?= Helper\template('task_details', array('task' => $task, 'project' => $project)) ?> - +<?= Helper\template('task_time', array('values' => $values, 'date_format' => $date_format, 'date_formats' => $date_formats)) ?> <?= Helper\template('task_show_description', array('task' => $task)) ?> - <?= Helper\template('subtask_show', array('task' => $task, 'subtasks' => $subtasks)) ?> - -<?php if (! empty($files)): ?> -<div id="attachments" class="task-show-section"> - <?= Helper\template('file_show', array('task' => $task, 'files' => $files)) ?> -</div> -<?php endif ?> - -<?= Helper\template('task_comments', array('task' => $task, 'comments' => $comments)) ?> +<?= Helper\template('task_timesheet', array('timesheet' => $timesheet)) ?> +<?= Helper\template('file_show', array('task' => $task, 'files' => $files)) ?> +<?= Helper\template('task_comments', array('task' => $task, 'comments' => $comments)) ?>
\ No newline at end of file |
