diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/task_edit.php | 1 | ||||
-rw-r--r-- | templates/task_new.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/templates/task_edit.php b/templates/task_edit.php index 856f7d5d..9fe0418f 100644 --- a/templates/task_edit.php +++ b/templates/task_edit.php @@ -25,6 +25,7 @@ <?= Helper\form_label(t('Due Date'), 'date_due') ?> <?= Helper\form_text('date_due', $values, $errors, array('placeholder="'.t('month/day/year').'"'), 'form-date') ?><br/> + <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div> <?= Helper\form_label(t('Description'), 'description') ?> <?= Helper\form_textarea('description', $values, $errors) ?><br/> diff --git a/templates/task_new.php b/templates/task_new.php index efb9cb62..f5797cdf 100644 --- a/templates/task_new.php +++ b/templates/task_new.php @@ -24,6 +24,7 @@ <?= Helper\form_label(t('Due Date'), 'date_due') ?> <?= Helper\form_text('date_due', $values, $errors, array('placeholder="'.t('month/day/year').'"'), 'form-date') ?><br/> + <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div> <?= Helper\form_label(t('Description'), 'description') ?> <?= Helper\form_textarea('description', $values, $errors) ?><br/> |