summaryrefslogtreecommitdiff
path: root/plugins/TimeMachine/Template/subtask/edit.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2020-05-05 14:25:42 +0200
committeremkael <emkael@tlen.pl>2020-05-05 14:25:42 +0200
commit62827e6cf470449c117624058fb36ad94804bcc0 (patch)
tree10cd1e4d36c34b694acfadaa69fc7f6ae2b1eabd /plugins/TimeMachine/Template/subtask/edit.php
parent7b66ddf2e4fbdb837e78d8b7dbaa9fc38391bc32 (diff)
Time tracking related pluginsHEADmaster
Diffstat (limited to 'plugins/TimeMachine/Template/subtask/edit.php')
-rw-r--r--plugins/TimeMachine/Template/subtask/edit.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/TimeMachine/Template/subtask/edit.php b/plugins/TimeMachine/Template/subtask/edit.php
new file mode 100644
index 00000000..7f20075c
--- /dev/null
+++ b/plugins/TimeMachine/Template/subtask/edit.php
@@ -0,0 +1,28 @@
+<div class="page-header">
+ <h2><?= t('Edit a sub-task') ?></h2>
+</div>
+
+<form method="post" action="<?= $this->url->href('SubtaskController', 'update', array('plugin' => 'TimeMachine', 'task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id'])) ?>" autocomplete="off">
+ <?= $this->form->csrf() ?>
+
+ <?= $this->subtask->renderTitleField($values, $errors, array('autofocus')) ?>
+ <?= $this->subtask->renderAssigneeField($users_list, $values, $errors) ?>
+ <?= $this->subtask->renderTimeEstimatedField($values, $errors) ?>
+ <?= $this->subtask->renderTimeSpentField($values, $errors) ?>
+ <div class="subtask-time-tracking-edit form-inline">
+ <h3><strong>Time Tracking details</strong></h3>
+ <?php foreach ($sttts as $key => $sttt) :?>
+ <?php $errorsSttt = isset($errorsSttts[$key]) ? $errorsSttts[$key]: []; ?>
+ <div>
+ <?= $sttt['username']?> :
+ <?= $this->helper->form->datetime(t('Start Date'), 'start-'.$sttt['id'], $sttt, $errorsSttt) ?>
+ <?= $this->helper->form->datetime(t('End Date'), 'end-'.$sttt['id'], $sttt, $errorsSttt) ?>
+ / <?=t('Time spent')?> : <?= $sttt['time_spent']?>
+ </div>
+ <?php endforeach; ?>
+ </div>
+
+ <?= $this->hook->render('template:subtask:form:edit', array('values' => $values, 'errors' => $errors)) ?>
+
+ <?= $this->modal->submitButtons() ?>
+</form>