-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix person and event fields * fix qualification and event attendance views * fix popover * replace inline styles and old bootstrap classes * fix include blank for dropdown selects * fix popovers * replace all camelCased scss variables to kebab-case * fix specs
- Loading branch information
Showing
22 changed files
with
115 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
- entry.used?(:expected_participants_wolf_f) do | ||
= f.labeled(:expected_participants, t('activerecord.attributes.event.expected_participants'), nil, class: 'controls-row') do | ||
.row | ||
.span1 | ||
.span1= t('activerecord.attributes.event.expected_participants_wolf') | ||
.span1= t('activerecord.attributes.event.expected_participants_pfadi') | ||
.span1= t('activerecord.attributes.event.expected_participants_pio') | ||
.span1= t('activerecord.attributes.event.expected_participants_rover') | ||
.span1= t('activerecord.attributes.event.expected_participants_leitung') | ||
.col-1 | ||
.col-1= t('activerecord.attributes.event.expected_participants_wolf') | ||
.col-1= t('activerecord.attributes.event.expected_participants_pfadi') | ||
.col-1= t('activerecord.attributes.event.expected_participants_pio') | ||
.col-1= t('activerecord.attributes.event.expected_participants_rover') | ||
.col-1= t('activerecord.attributes.event.expected_participants_leitung') | ||
.row | ||
.span1 F | ||
= f.string_field(:expected_participants_wolf_f, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_pfadi_f, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_pio_f, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_rover_f, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_leitung_f, class: 'span1', maxlength: 4) | ||
.col-1 F | ||
.col-1 | ||
= f.string_field(:expected_participants_wolf_f) | ||
.col-1 | ||
= f.string_field(:expected_participants_pfadi_f) | ||
.col-1 | ||
= f.string_field(:expected_participants_pio_f) | ||
.col-1 | ||
= f.string_field(:expected_participants_rover_f) | ||
.col-1 | ||
= f.string_field(:expected_participants_leitung_f) | ||
.row | ||
.span1 M | ||
= f.string_field(:expected_participants_wolf_m, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_pfadi_m, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_pio_m, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_rover_m, class: 'span1', maxlength: 4) | ||
= f.string_field(:expected_participants_leitung_m, class: 'span1', maxlength: 4) | ||
.col-1 M | ||
.col-1 | ||
= f.string_field(:expected_participants_wolf_m) | ||
.col-1 | ||
= f.string_field(:expected_participants_pfadi_m) | ||
.col-1 | ||
= f.string_field(:expected_participants_pio_m) | ||
.col-1 | ||
= f.string_field(:expected_participants_rover_m) | ||
.col-1 | ||
= f.string_field(:expected_participants_leitung_m) | ||
.row.help-block= t('.expected_participants_help_inline') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
= action_button(t('event.lists.advanced_bsv_export_button'), | ||
'#', | ||
nil, | ||
:download, | ||
title: t('event.lists.bsv_export_button'), | ||
data: { toggle: 'popover', | ||
content: render('popover_bsv_export', advanced: true).to_str }) | ||
data: { bs_toggle: 'popover', | ||
bs_content: render('popover_bsv_export', advanced: true).to_str }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.