diff options
| -rw-r--r-- | app/views/referentials/show.html.slim | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/views/referentials/show.html.slim b/app/views/referentials/show.html.slim index bf202d87a..c872dbee8 100644 --- a/app/views/referentials/show.html.slim +++ b/app/views/referentials/show.html.slim @@ -89,8 +89,12 @@ .modal-header h4.modal-title Purger le JDD .modal-body - = f.input :begin_date, as: :date, label: t('titles.clean_up.begin_date'),:wrapper_html => { class: 'date', title: t('titles.clean_up.begin_date') } - = f.input :end_date, as: :date, label: t('titles.clean_up.end_date'), :wrapper_html => { class: 'date', title: t('titles.clean_up.end_date') } + .row + .col-lg-6.col-md-6.col-sm-6.col-xs-12 + = f.input :begin_date, as: :date, label: t('titles.clean_up.begin_date'),:wrapper_html => { class: 'date', title: t('titles.clean_up.begin_date') } + .col-lg-6.col-md-6.col-sm-6.col-xs-12 + = f.input :end_date, as: :date, label: t('titles.clean_up.end_date'), :wrapper_html => { class: 'date', title: t('titles.clean_up.end_date') } + .modal-footer button.btn.btn-link type='button' data-dismiss='modal' Annuler = f.button :submit, t('actions.clean_up') , class: 'btn btn-primary' |
