diff options
| author | Luc Donnet | 2018-03-27 10:50:42 +0200 |
|---|---|---|
| committer | GitHub | 2018-03-27 10:50:42 +0200 |
| commit | 25cbe2bfac1de0c6268f8d19f39a8496a88977cd (patch) | |
| tree | 33153132459274645bcc63ade4571aabfd2ca5af /app/views/calendars | |
| parent | 1386e3c2d525b61bf0e6a7ace9ed755bff9eb998 (diff) | |
| parent | fb3798e12e72057ca6174d7470698be6e10b1ba8 (diff) | |
| download | chouette-core-25cbe2bfac1de0c6268f8d19f39a8496a88977cd.tar.bz2 | |
Merge pull request #384 from af83/6190-fix-consistency-issue-with-calendars
6190 fix consistency issue with calendars
Diffstat (limited to 'app/views/calendars')
| -rw-r--r-- | app/views/calendars/_form_simple.html.slim | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/app/views/calendars/_form_simple.html.slim b/app/views/calendars/_form_simple.html.slim index 1025130fd..a87a3dab5 100644 --- a/app/views/calendars/_form_simple.html.slim +++ b/app/views/calendars/_form_simple.html.slim @@ -32,24 +32,24 @@ .separator - .row - .col-lg-12 - .subform - .nested-head - .wrapper - div - .form-group - label.control-label - = t('simple_form.labels.calendar.ranges.begin') - div - .form-group - label.control-label - = t('simple_form.labels.calendar.ranges.end') - div - - = f.simple_fields_for :periods do |period| - = render 'period_fields', f: period - .links.nested-linker - = link_to_add_association t('simple_form.labels.calendar.add_a_date_range'), f, :periods, class: 'btn btn-outline-primary' + .row + .col-lg-12 + .subform + .nested-head + .wrapper + div + .form-group + label.control-label + = t('simple_form.labels.calendar.ranges.begin') + div + .form-group + label.control-label + = t('simple_form.labels.calendar.ranges.end') + div + + = f.simple_fields_for :periods do |period| + = render 'period_fields', f: period + .links.nested-linker + = link_to_add_association t('simple_form.labels.calendar.add_a_date_range'), f, :periods, class: 'btn btn-outline-primary' = f.button :submit, t('actions.submit'), class: 'btn btn-default formSubmitr', form: 'calendar_form' |
