No release in over a year
Nested list field for has many relation in rails admin panel
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 7.0, >= 7.0.0

Runtime

~> 7.0
~> 3.0, >= 3.0.0
 Project Readme

Rails Admin Nested List

A simple gem to work with rails_admin that allow nested association display list instead tabs.

Installation

gem "rails_admin_nested_list"

Usage

RailsAdmin.config do |config|
  config.model MyAwesomeModel do
    edit do
      field :associations, :nested_list
    end
  end
end

Config

  • active - Open association field (default: false)
RailsAdmin.config do |config|
  config.model MyAwesomeModel do
    edit do
      field :associations, :nested_list do
        active true
      end
    end
  end
end

active true