diff options
author | David-Norris <Dave@Rachels-MacBook-Pro.local> | 2015-05-03 00:12:28 -0400 |
---|---|---|
committer | David-Norris <Dave@Rachels-MacBook-Pro.local> | 2015-05-03 00:12:28 -0400 |
commit | a314bbb489eff2d419481ad001805ce13edb5352 (patch) | |
tree | 43961ee5b42857f905eb8042af5090d0a4413221 /app/Template/task/details.php | |
parent | fa5aaa60934223f74c9b9c32e7599f53c72a81fd (diff) |
Initial Recurring Tasks Commit
Initial Recurring Tasks Commit
No Locales Updated.
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> |