Sha256: 003162d7402ce3f7b46ececdd644862ebe8e69f41469755d66ff18058cca1917

Contents?: true

Size: 1.21 KB

Versions: 19

Compression:

Stored size: 1.21 KB

Contents

%div{ data: { controller: "#{@resource.class.name.underscore.gsub('_', '-').gsub('/', '--')}-form" } }
  - @resource.class.resource_field_groups.select{ |x| x.editable }.each do |rfg|
    %h3= resource_field_group_label(@resource.class, rfg.key) unless rfg.key == :default
    - rfg.sections.each do |section|
      .row
        - section.fields.each do |field|
          %div{ class: section.column_class }
            - if association?(field)
              - collection = collection_for(field)
              - if one_through?(field)
                = @f.input        field.sym, collection: [collection].flatten, disabled: !field.editable, input_html: { data: association_data_hash_for(field) }, selected: collection
              - else
                = @f.association  field.sym, collection: [collection].flatten, disabled: !field.editable, input_html: { data: association_data_hash_for(field) }
            - elsif boolean?(field)
              = @f.input field.sym, disabled: !field.editable, as: field.type.to_sym, input_html: { data: input_data_hash_for(field) }
            - else 
              = @f.input field.sym, disabled: !field.editable, as: field.type.to_sym, input_html: { rows: 10, data: input_data_hash_for(field) }

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
five-two-nw-olivander-0.2.0.30 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.29 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.28 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.27 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.26 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.25 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.24 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.23 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.22 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.19 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.18 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.17 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.16 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.15 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.14 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.13 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.12 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.11 app/components/olivander/components/resource_form_component.html.haml
five-two-nw-olivander-0.2.0.10 app/components/olivander/components/resource_form_component.html.haml