diff options
Diffstat (limited to 'app/Template/export/transitions.php')
-rw-r--r-- | app/Template/export/transitions.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/app/Template/export/transitions.php b/app/Template/export/transitions.php index 093930a3..7cd355db 100644 --- a/app/Template/export/transitions.php +++ b/app/Template/export/transitions.php @@ -10,15 +10,12 @@ <?= $this->form->hidden('action', $values) ?> <?= $this->form->hidden('project_id', $values) ?> - <?= $this->form->label(t('Start Date'), 'from') ?> - <?= $this->form->text('from', $values, $errors, array('required', 'placeholder="'.$this->text->in($date_format, $date_formats).'"'), 'form-date') ?> - - <?= $this->form->label(t('End Date'), 'to') ?> - <?= $this->form->text('to', $values, $errors, array('required', 'placeholder="'.$this->text->in($date_format, $date_formats).'"'), 'form-date') ?> + <?= $this->form->date(t('Start date'), 'from', $values) ?> + <?= $this->form->date(t('End date'), 'to', $values) ?> <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div> <div class="form-actions"> <button type="submit" class="btn btn-blue"><?= t('Execute') ?></button> </div> -</form>
\ No newline at end of file +</form> |