Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个具有 4 个属性的对象。我想通过 Active Admin 在 2*2 表中显示它们,默认情况下,Active Admin 显示页面每行显示 1 个属性。谁能告诉我如何覆盖这种行为。
注意:我不想为此写部分内容。
ActiveAdmin 很难定制。
您可以采取一些解决方法,例如将列数从 4 减少到 2:
index do column :attr1, do |item| item.attr1 end column :attr2 do |item| item.attr2 end end
然后在这两个块中插入自定义内容。