Rails Admin vs Active Admin: Rails Admin Generation Tools

Possible duplicate:
Rails Admin vs ActiveAdmin

I know that there is already another question about this, but that was not so helpful to me. I am looking for a tool to create administrators for Rails and, in addition to personal taste, I decide whether to use Rails Admin, Active Admin or other tools. Did you have experience with them? Can you suggest what you prefer by providing technical explanations and feedback?

+6
source share
1 answer

I have not tried Rails Admin, but Active Admin is pretty nice. Active Admin is flexible in the sense that it allows you to configure the admin panel over a long length, but requires a little knowledge of Rails (and Ruby) and a few conventions here and there.

There is a good video on this site dedicated to Active Admin active admin @ railscast.com

I personally prefer to manage objects directly from the first page (authorization, sessions, etc.), but in general it depends on what you intend to do for the website. It’s useful to use the admin panel to solve e-commerce, but on the other hand, I find it superfluous for the blog;).

hope this helps!

+2
source

Source: https://habr.com/ru/post/897885/


All Articles