Sha256: a813749393cf52a12dda9cec128c9e890858c507f2583ce8786a98b290476838

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

= simple_form_for(<%= form_for %>) do |f|
  %div{role: 'tabpanel'}
    %ul.nav.nav-tabs{role: 'tablist'}
      %li.active{role: 'presentation'}
        %a{'data-toggle': 'tab', role: 'tab', 'aria-controls': '<%= resource.name %>-tab', href: '#<%= resource.name %>-tab'}
          <%= resource.human_name.titleize %>

<% resource.nested_resources.each do |_, nested_resource| -%>
      %li{role: 'presentation'}
        %a{'data-toggle': 'tab', role: 'tab', 'aria-controls': '<%= nested_resource.plural_name %>-tab', href: '#<%= nested_resource.plural_name %>-tab'}
          <%= nested_resource.plural_name.titleize %>

<% end -%>
  .tab-content
    #<%= resource.name %>-tab.tab-pane.active{role: 'tabpanel'}
      = render 'form_<%= resource.name %>', f: f

<% resource.nested_resources.each do |_, nested_resource| -%>
    #<%= nested_resource.plural_name %>-tab.tab-pane{role: 'tabpanel'}
      = render 'form_<%= nested_resource.plural_name %>', f: f
<% end -%>

  .form-actions
  <% if defined?(EffectiveResources) -%>
  = simple_form_submit(f)
  <% else -%>
  = f.button :submit, 'Save', data: { disable_with: 'Saving...' }
  = f.button :submit, 'Save and Continue', data: { disable_with: 'Saving...' }
  = f.button :submit, 'Save and Add New', data: { disable_with: 'Saving...' }
  <% end -%>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
effective_developer-0.2.2 lib/scaffolds/forms/tabpanel/_form.html.haml
effective_developer-0.2.1 lib/scaffolds/forms/tabpanel/_form.html.haml