|
7 | 7 | %fieldset{id: 'fields_to_export'}
|
8 | 8 | %div.control-group
|
9 | 9 | %div.controls
|
10 |
| - %label.checkbox{for: 'check_all'} |
11 |
| - = t('admin.export.select_all_fields') |
| 10 | + .col-sm-2 |
| 11 | + %label.col-sm-10.checkbox{for: 'check_all'} |
12 | 12 | = check_box_tag 'all', 'all', true, { id: 'check_all' }
|
| 13 | + = t('admin.export.select_all_fields') |
13 | 14 | %legend
|
14 | 15 | %i.icon-chevron-down
|
15 | 16 | = t('admin.export.select')
|
16 | 17 | .control-group
|
17 |
| - %label.control-label{rel: 'tooltip', :'data-original-title' => t('admin.export.click_to_reverse_selection'), onclick: 'jQuery(this).siblings(".controls").find("input").click()'}= t('admin.export.fields_from', name: @model_config.label_plural.downcase) |
18 |
| - .controls |
| 18 | + %label.col-sm-2.control-label{rel: 'tooltip', :'data-original-title' => t('admin.export.click_to_reverse_selection'), onclick: 'jQuery(this).siblings(".controls").find("input").click()'}= t('admin.export.fields_from', name: @model_config.label_plural.downcase) |
| 19 | + .col-sm-10.controls |
19 | 20 | - visible_fields.select{ |f| !f.association? || f.association.polymorphic? }.each do |field|
|
20 | 21 | - list = field.virtual? ? 'methods' : 'only'
|
21 | 22 | - if field.association? && field.association.polymorphic?
|
|
34 | 35 | - visible_fields.select{ |f| f.association? && !f.association.polymorphic? }.each do |field|
|
35 | 36 | - fields = field.associated_model_config.export.with(controller: self.controller, view: self, object: (associated_model = field.associated_model_config.abstract_model.model).new).visible_fields.select{ |f| !f.association? }
|
36 | 37 | .control-group
|
37 |
| - %label.control-label{rel: 'tooltip', :'data-original-title' => t('admin.export.click_to_reverse_selection'), onclick: 'jQuery(this).siblings(".controls").find("input").click()'}= t('admin.export.fields_from_associated', name: field.label.downcase) |
38 |
| - .controls |
| 38 | + %label.col-sm-2.control-label{rel: 'tooltip', :'data-original-title' => t('admin.export.click_to_reverse_selection'), onclick: 'jQuery(this).siblings(".controls").find("input").click()'}= t('admin.export.fields_from_associated', name: field.label.downcase) |
| 39 | + .col-sm-10.controls |
39 | 40 | - fields.each do |associated_model_field|
|
40 | 41 | - list = associated_model_field.virtual? ? 'methods' : 'only'
|
41 | 42 | %label.checkbox{for: "schema_include_#{field.name}_#{list}_#{associated_model_field.name}"}
|
|
48 | 49 | = t('admin.export.options_for', name: 'csv')
|
49 | 50 | .control-group
|
50 | 51 | - guessed_encoding = @abstract_model.encoding
|
51 |
| - %label.control-label{for: "csv_options_encoding_to"}= t('admin.export.csv.encoding_to') |
52 |
| - .controls |
| 52 | + %label.col-sm-2.control-label{for: "csv_options_encoding_to"}= t('admin.export.csv.encoding_to') |
| 53 | + .col-sm-10.controls |
53 | 54 | -# from http://books.google.com/support/partner/bin/answer.py?answer=30990 :
|
54 | 55 | = select_tag 'csv_options[encoding_to]', options_for_select(RailsAdmin::CSVConverter::TARGET_ENCODINGS), include_blank: true
|
55 | 56 | %p.help-block= t('admin.export.csv.encoding_to_help', name: guessed_encoding)
|
56 | 57 |
|
57 | 58 | .control-group
|
58 |
| - %label.control-label{for: "csv_options_skip_header"}= t('admin.export.csv.skip_header') |
59 |
| - .controls |
| 59 | + %label.col-sm-2.control-label{for: "csv_options_skip_header"}= t('admin.export.csv.skip_header') |
| 60 | + .col-sm-10.controls |
60 | 61 | = check_box_tag 'csv_options[skip_header]', 'true'
|
61 | 62 | %p.help-block= t('admin.export.csv.skip_header_help')
|
62 | 63 |
|
63 | 64 | .control-group
|
64 |
| - %label.control-label{for: "csv_options_generator_col_sep"}= t('admin.export.csv.col_sep') |
65 |
| - .controls |
| 65 | + %label.col-sm-2.control-label{for: "csv_options_generator_col_sep"}= t('admin.export.csv.col_sep') |
| 66 | + .col-sm-10.controls |
66 | 67 | = select_tag 'csv_options[generator][col_sep]', options_for_select({ '' => t('admin.export.csv.default_col_sep'), "<comma> ','" => ',', "<semicolon> ';'" => ';', '<tabs>' => "'\t'" })
|
67 | 68 | %p.help-block= t('admin.export.csv.col_sep_help', value: t('admin.export.csv.default_col_sep'))
|
68 | 69 |
|
|
0 commit comments