diff options
Diffstat (limited to 'app/Template/task/show.php')
-rw-r--r-- | app/Template/task/show.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/Template/task/show.php b/app/Template/task/show.php index e18b47fc..277c99c0 100644 --- a/app/Template/task/show.php +++ b/app/Template/task/show.php @@ -1,16 +1,9 @@ <?= $this->render('task/details', array( 'task' => $task, 'project' => $project, - 'recurrence_trigger_list' => $this->task->recurrenceTriggers(), - 'recurrence_timeframe_list' => $this->task->recurrenceTimeframes(), - 'recurrence_basedate_list' => $this->task->recurrenceBasedates(), 'editable' => $this->user->hasProjectAccess('taskmodification', 'edit', $project['id']), )) ?> -<?php if ($this->user->hasProjectAccess('taskmodification', 'edit', $project['id'])): ?> - <?= $this->render('task_modification/edit_time', array('task' => $task, 'values' => $values, 'date_format' => $date_format, 'date_formats' => $date_formats)) ?> -<?php endif ?> - <?= $this->render('task/description', array('task' => $task)) ?> <?= $this->render('subtask/show', array( |