summaryrefslogtreecommitdiff
path: root/app/Template/analytic/cfd.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-06 14:42:53 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-06 14:43:36 -0500
commit5933a829b7e0201fefe4198672612c0ae77000d6 (patch)
tree0faa27b990de8c1bb77682b2d6d975181f1fd0ad /app/Template/analytic/cfd.php
parent18bba794131e18b6ae81dff897bc196f43ca9d63 (diff)
Minors layout improvements
Diffstat (limited to 'app/Template/analytic/cfd.php')
-rw-r--r--app/Template/analytic/cfd.php16
1 files changed, 11 insertions, 5 deletions
diff --git a/app/Template/analytic/cfd.php b/app/Template/analytic/cfd.php
index 46cee47e..d8dd5517 100644
--- a/app/Template/analytic/cfd.php
+++ b/app/Template/analytic/cfd.php
@@ -16,11 +16,17 @@
<?= Helper\form_csrf() ?>
- <?= Helper\form_label(t('Start Date'), 'from') ?>
- <?= Helper\form_text('from', $values, array(), array('required', 'placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?>
+ <div class="form-inline-group">
+ <?= Helper\form_label(t('Start Date'), 'from') ?>
+ <?= Helper\form_text('from', $values, array(), array('required', 'placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?>
+ </div>
- <?= Helper\form_label(t('End Date'), 'to') ?>
- <?= Helper\form_text('to', $values, array(), array('required', 'placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?>
+ <div class="form-inline-group">
+ <?= Helper\form_label(t('End Date'), 'to') ?>
+ <?= Helper\form_text('to', $values, array(), array('required', 'placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?>
+ </div>
- <input type="submit" value="<?= t('Execute') ?>" class="btn btn-blue"/>
+ <div class="form-inline-group">
+ <input type="submit" value="<?= t('Execute') ?>" class="btn btn-blue"/>
+ </div>
</form>