0

Is there any option for creating a Custom view in Rails Admin ?

I tried to find information about, but unsuccessfully.

Nezir
  • 6,727
  • 12
  • 54
  • 78

1 Answers1

1

Unlike devise which can generate view using

rails g devise:views

you cant achieve this with rails_admin as the feature is now depreciated:

rake rails_admin:copy_views

instead you need to style the view using the following docs

https://github.com/sferik/rails_admin/wiki/List-view-table-styling

Gurmukh Singh
  • 1,875
  • 3
  • 24
  • 62
  • Thanks @Gurmukh this is not so much customizable solution but can help in some occasions. I think I will create a new controller with custom views and then use data from rails admin models. – Nezir Jul 21 '16 at 11:13