summaryrefslogtreecommitdiff
path: root/app/Template/config/project.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-25 13:02:20 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-25 13:02:20 -0400
commit8142d43057939265d15317bc051ff149553ca727 (patch)
treeb4172f7dfd06702e9eac32b59a10a2f8669adbb4 /app/Template/config/project.php
parent392a75fa0e76530c176d78b4e17a2834286616e3 (diff)
Add settings to disable subtask timer and another to not include closed tasks into CFD
Diffstat (limited to 'app/Template/config/project.php')
-rw-r--r--app/Template/config/project.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/config/project.php b/app/Template/config/project.php
index b762de24..c58a7bac 100644
--- a/app/Template/config/project.php
+++ b/app/Template/config/project.php
@@ -18,6 +18,8 @@
<p class="form-help"><?= t('Example: "Bug, Feature Request, Improvement"') ?></p>
<?= $this->form->checkbox('subtask_restriction', t('Allow only one subtask in progress at the same time for a user'), 1, $values['subtask_restriction'] == 1) ?>
+ <?= $this->form->checkbox('subtask_time_tracking', t('Trigger automatically subtask time tracking'), 1, $values['subtask_time_tracking'] == 1) ?>
+ <?= $this->form->checkbox('cfd_include_closed_tasks', t('Include closed tasks in the cumulative flow diagram'), 1, $values['cfd_include_closed_tasks'] == 1) ?>
<div class="form-actions">
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>