<%= settings_section title: t(".imports") do %>
<% if @imports.empty? %> <%= render partial: "imports/empty" %> <% else %>
<%= render partial: "imports/import", collection: @imports.ordered %>
<% end %> <%= link_to new_import_path, class: "bg-container-inset flex items-center justify-center gap-2 text-secondary mt-1 hover:bg-container-inset-hover rounded-lg px-4 py-2 w-full text-center", data: { turbo_frame: :modal } do %> <%= icon("plus") %> <%= t(".new") %> <% end %>
<% end %> <% if Current.user.admin? %> <%= settings_section title: t(".exports") do %>
<%= turbo_frame_tag "family_exports", src: family_exports_path, loading: :lazy do %>
<% end %>
<%= link_to new_family_export_path, class: "bg-container-inset flex items-center justify-center gap-2 text-secondary mt-1 hover:bg-container-inset-hover rounded-lg px-4 py-2 w-full text-center", data: { turbo_frame: :modal } do %> <%= icon("plus") %> <%= t(".new_export") %> <% end %>
<% end %> <% end %>