Sha256: 5f039cfd159de2433bcd88c05eaf3d172c2cb7dfbccfc0f3d93c42865e0af382

Contents?: true

Size: 1.19 KB

Versions: 27

Compression:

Stored size: 1.19 KB

Contents

- @resource.class.resource_field_groups.each do |rfg|
  %h3= resource_field_group_label(@resource.class, rfg.key) unless rfg.key == :default
  %table.table.table-hover.table-striped
    %thead
      %tr
        - 12.times do
          %td{ style: 'width: 8.33%; height: 0px' }
    %tbody
      - rfg.sections.each do |section|
        - section.fields.each_slice(section.columns) do |slice|
          - colspan = (12 - slice.size) / section.columns
          %tr
            - slice.each do |f|
              %th.text-right{ style: 'width: 10%' }= field_label_for(@resource.class, f.sym)
              - max_columns = rfg.max_section_columns
              %td{ colspan: colspan }
                - val = @resource.send(f.sym)
                - case f.type
                - when :string
                  = val
                - when :boolean
                  - icon_class = val ? 'fa-check text-success' : 'fa-times text-danger'
                  %i.fa{ class: icon_class }
                - when :association
                  = link_to val if val.present?
                - else
                  = val
            - (section.columns-slice.size).times do
              %th
              %td{ colspan: colspan }

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
five-two-nw-olivander-0.1.2.43.a app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.43 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.42 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.41 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.40 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.39 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.38 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.37 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.36 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.35 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.34 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.33 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.32 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.31 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.30 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.29 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.28 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.27 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.26 app/components/olivander/components/resource_show_component.html.haml
five-two-nw-olivander-0.1.2.25 app/components/olivander/components/resource_show_component.html.haml