diff options
Diffstat (limited to 'app/Template/task/details.php')
-rw-r--r-- | app/Template/task/details.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/Template/task/details.php b/app/Template/task/details.php index 76241acf..331862b9 100644 --- a/app/Template/task/details.php +++ b/app/Template/task/details.php @@ -80,5 +80,44 @@ <?= $this->a(t('Public link'), 'task', 'readonly', array('task_id' => $task['id'], 'token' => $project['token']), false, '', '', true) ?> </li> <?php endif ?> + <?php if ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_NONE): ?> + <li> + <?= t('No recurrent task is scheduled to generate') ?> + </li> + <?php endif ?> + <?php if ($task['recurrence_status'] != \Model\Task::RECURE_STATUS_NONE): ?> + <li> + <?php if ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_PENDING): ?> + <?= t('Recurrent task is scheduled to generate') ?> + <?php endif ?> + <?php if ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_PROCESSED): ?> + <?= t('Recurrent task has been generated') ?> + <?php endif ?> + <ul> + <li> + <?= t('Trigger to generate recurrent task: %s', $recurrence_trigger_list[$task['recurrence_trigger']]) ?></stong> + </li> + <li> + <?= t('Factor to calculate new due date: %s', $task['recurrence_factor']) ?></stong> + </li> + <li> + <?= t('Timeframe to calculate new due date: %s', $recurrence_timeframe_list[$task['recurrence_timeframe']]) ?></stong> + </li> + <li> + <?= t('Base date to calculate new due date: %s', $recurrence_basedate_list[$task['recurrence_basedate']]) ?></stong> + </li> + </ul> + </li> + <?php endif ?> + <?php if ($task['recurrence_parent']): ?> + <li> + <?= t('Recurrent task created by: %s', $task['recurrence_parent']) ?> + </li> + <?php endif ?> + <?php if ($task['recurrence_child']): ?> + <li> + <?= t('Created recurrent task: %s', $task['recurrence_child']) ?> + </li> + <?php endif ?> </ul> </div> |