diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-05 11:22:10 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-05 11:22:10 -0400 |
commit | bae57838c2dd789064b246308c7cb3a33bba5b8e (patch) | |
tree | b43db60ada251debd3bf5d900d017b2cd29e421f /app/Templates/config_application.php | |
parent | 8e5673e3d289e4d28b4fc9f20721bda9f1c858c7 (diff) |
Input date format is now a config parameter instead of the current locale
Diffstat (limited to 'app/Templates/config_application.php')
-rw-r--r-- | app/Templates/config_application.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Templates/config_application.php b/app/Templates/config_application.php index 251a45dc..97071bd0 100644 --- a/app/Templates/config_application.php +++ b/app/Templates/config_application.php @@ -16,6 +16,10 @@ <?= Helper\form_label(t('Timezone'), 'application_timezone') ?> <?= Helper\form_select('application_timezone', $timezones, $values, $errors) ?><br/> + <?= Helper\form_label(t('Date format'), 'application_date_format') ?> + <?= Helper\form_select('application_date_format', $date_formats, $values, $errors) ?><br/> + <p class="form-help"><?= t('ISO format is always accepted, example: "%s" and "%s"', date('Y-m-d'), date('Y_m_d')) ?></p> + <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> </div> |