Sha256: 7d447c12ce11671cab466ab665abef1f52cc11fdd776b6b80eaeb05608d04a0f

Contents?: true

Size: 770 Bytes

Versions: 4

Compression:

Stored size: 770 Bytes

Contents

<%= content_tag :div, class: "nested-fields bg-gray-100 rounded-t-xl p-5", data: { new_record: f.object.new_record? } do %>
  <% field.nested_attributes.each do |nested_attribute| %>
    <% next if nested_attribute[:field].nil? %>
    <% next unless nested_attribute[:field].visible?(action_name) %>
    <% next unless nested_attribute[:field].visible?(:form) %>

    <% nested_field = nested_attribute[:field] %>

    <div class="mb-4 flex">
      <%= render partial: nested_field.to_partial_path("form"), locals: { field: nested_field, record: f.object, form: f, resource: field.resource } %>
    </div>
  <% end %>

  <small><%= link_to "Remove", "#", data: { action: "click->nested-form#remove_association" } %></small>

  <%= f.hidden_field :_destroy %>

<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
madmin-1.2.2 app/views/madmin/fields/nested_has_many/_fields.html.erb
madmin-1.2.1 app/views/madmin/fields/nested_has_many/_fields.html.erb
madmin-1.2.0 app/views/madmin/fields/nested_has_many/_fields.html.erb
madmin-1.1.0 app/views/madmin/fields/nested_has_many/_fields.html.erb