summaryrefslogtreecommitdiff
path: root/app/Template/task
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-02-05 19:00:40 -0500
committerFrederic Guillot <fred@kanboard.net>2016-02-05 19:00:40 -0500
commite2181612b984489e479f52f748c3199c693d986c (patch)
treed4da9f131be6d020137e7862f5f1d9fa1f4963ca /app/Template/task
parenta683c17fa7828fabc1b107265a87b07a91322c8f (diff)
Remove time form on task summary page and move that to task edit form
Diffstat (limited to 'app/Template/task')
-rw-r--r--app/Template/task/menu.php6
-rw-r--r--app/Template/task/show.php7
2 files changed, 6 insertions, 7 deletions
diff --git a/app/Template/task/menu.php b/app/Template/task/menu.php
index 426cfb3d..20fca22b 100644
--- a/app/Template/task/menu.php
+++ b/app/Template/task/menu.php
@@ -2,6 +2,12 @@
<div class="dropdown">
<i class="fa fa-caret-down"></i> <a href="#" class="dropdown-menu"><?= t('Actions') ?></a>
<ul>
+ <?php if (empty($task['date_started'])): ?>
+ <li>
+ <i class="fa fa-play fa-fw"></i>
+ <?= $this->url->link(t('Set automatically the start date'), 'taskmodification', 'start', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+ </li>
+ <?php endif ?>
<li>
<i class="fa fa-pencil-square-o fa-fw"></i>
<?= $this->url->link(t('Edit the task'), 'taskmodification', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?>
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(