Sha256: 82a40edafbf66b0332068fdc28c9f083d1d9a0146a4630953419009f29b79138

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

.controls{data: { nestedmany: true }}
  .btn-group
    %a.btn.btn-info.toggler{:'data-toggle' => "button", :'data-target' => "#{form.jquery_namespace(field)} > .tab-content, #{form.jquery_namespace(field)} > .controls > .nav", class: (field.active? ? 'active' : '')}
      %i.icon-white
    - unless field.nested_form[:update_only] || !field.inline_add
      = form.link_to_add "<i class=\"icon-plus icon-white\"></i> #{wording_for(:link, :new, field.associated_model_config.abstract_model)}".html_safe, field.name, { class: 'btn btn-info' }
  = form.errors_for(field)
  = form.help_for(field)
  %ul.nav.nav-tabs{ style: 'margin-top:5px' }
.tab-content
  = form.fields_for field.name do |nested_form|
    - if field.nested_form[:allow_destroy] || nested_form.options[:child_index] == "new_#{field.name}"
      = nested_form.link_to_remove '<span class="btn btn-small btn-danger"><i class="icon-trash icon-white"></i></span>'.html_safe
    = nested_form.generate({action: :nested, model_config: field.associated_model_config, nested_in: field })

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails_admin-0.6.6 app/views/rails_admin/main/_form_nested_many.html.haml
rails_admin-0.6.5 app/views/rails_admin/main/_form_nested_many.html.haml
rails_admin-0.6.4 app/views/rails_admin/main/_form_nested_many.html.haml
rails_admin-0.6.3 app/views/rails_admin/main/_form_nested_many.html.haml