summaryrefslogtreecommitdiff
path: root/templates/task_new.php
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-24 21:22:32 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-24 21:22:32 -0500
commit44fc9c081fb7561b7b02115f9b2a6eb0349d2201 (patch)
tree314249cc9a8dfc23ecb2d1bcc089362418698a96 /templates/task_new.php
parent565290fbf9e3727655921a969550167aa59a6e24 (diff)
Add story points for tasks
Diffstat (limited to 'templates/task_new.php')
-rw-r--r--templates/task_new.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/task_new.php b/templates/task_new.php
index e418748c..dd2ba3b4 100644
--- a/templates/task_new.php
+++ b/templates/task_new.php
@@ -20,6 +20,9 @@
<?= Helper\form_label(t('Assignee'), 'owner_id') ?>
<?= Helper\form_select('owner_id', $users_list, $values, $errors) ?><br/>
+ <?= Helper\form_label(t('Story Points'), 'score') ?>
+ <?= Helper\form_number('score', $values, $errors) ?><br/>
+
<?= Helper\form_label(t('Description'), 'description') ?>
<?= Helper\form_textarea('description', $values, $errors) ?><br/>