Sha256: 730af2f9f27a065e4a1b99cda3b155f2b1d1599b7288f41601200050aa8ad143

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 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.4 lib/scaffolds/forms/tabpanel/_form.html.haml
effective_developer-0.2.3 lib/scaffolds/forms/tabpanel/_form.html.haml