summaryrefslogtreecommitdiff
path: root/templates/task_new.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-27 19:48:36 -0400
committerFrédéric Guillot <fguillot@users.noreply.github.com>2014-04-27 19:48:36 -0400
commit12d7138a47d2c7a50ca8f0b2abb2266239c6197f (patch)
tree97e4024190d2cb09af9428993b76b77a82178a93 /templates/task_new.php
parent349b5f3f56f83d681fe6658c1a8475992dde9eea (diff)
Add support for the ISO 8601 date format (for due date)
Diffstat (limited to 'templates/task_new.php')
-rw-r--r--templates/task_new.php1
1 files changed, 1 insertions, 0 deletions
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/>