diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-07 19:15:53 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-07 19:15:53 -0400 |
commit | 58297ca3b11b9ad526a8ac344e5ac56d9e1b5a13 (patch) | |
tree | c20ff7b7463e0fa97667a2f17c482c85e015f7e3 /app/Template/task/time.php | |
parent | 5e7e03a866459047b677e57be33eee991aa57214 (diff) |
Add datetime picker for start date
Diffstat (limited to 'app/Template/task/time.php')
-rw-r--r-- | app/Template/task/time.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task/time.php b/app/Template/task/time.php index 6682a08d..9e024c7f 100644 --- a/app/Template/task/time.php +++ b/app/Template/task/time.php @@ -3,7 +3,7 @@ <?= $this->form->hidden('id', $values) ?> <?= $this->form->label(t('Start date'), 'date_started') ?> - <?= $this->form->text('date_started', $values, array(), array('placeholder="'.$this->text->in($date_format, $date_formats).'"'), 'form-date') ?> + <?= $this->form->text('date_started', $values, array(), array('placeholder="'.$this->text->in($date_format, $date_formats).'"'), 'form-datetime') ?> <?= $this->form->label(t('Time estimated'), 'time_estimated') ?> <?= $this->form->numeric('time_estimated', $values, array(), array('placeholder="'.t('hours').'"')) ?> |