[Django]-Rails Alternative to The Django admin panel / CRUD View Generator?

10👍

interesting tool http://activeadmin.info/

👤SpX

6👍

You might want to take a look at the RailsAdmin gem.

👤Arie

6👍

Answer in several parts:

  1. for something similar to Django admin, it all depends on what you plan to do with it. If you want to build your site around it, scaffolding is good. However, even if you chose Django, don’t build your site around admin. It is not meant for this (it is possible, but after you’ll have very little flexibility), it is just made for being an admin interface.

  2. This being said, if you need to work fast, and have no knowledge in Python nor in Ruby, I would go for Python – Django. Rails can be awfully productive, but the learning curve is much steeper than Django’s. And Ruby’s syntax is very fancy, but Python’s is neater in my opinion (I know some will disagree on this!)

👤sebpiq

2👍

Here are some popular choices of admin interface gems for Rails.

More choices at The Ruby Toolbox. ActiveScaffold is the most popular according to Ruby Toolbox, but it seems like it’s not compatible with Rails 3.0.

2👍

I really enjoyed using https://github.com/pilu/web-app-theme. Simple, ready to use, can spit out both erb and haml.

1👍

Rails has a scaffold generator, which is neat to quickly sketch things out, but it has little by way of an Admin generator that’s as nice as the one Django provides. That being said, it is quite easy to do most of those things fairly quickly with Rails. Take a look at the Rails tutorial. I have found it to be the fastest way to learn rails at the moment really. And the link I have included for the scaffold generator should get you using the code generation tool in rails.

1👍

administrate_me is a good choice, it definitely has the ‘feel’ of the Django admin.

0👍

There’s a really fast admin panel type thing that’s now available — The Brick. This one auto-creates its own models / controllers / views when any existing ones are not found, and does this entirely on-the-fly in RAM.

Not as configurable as other panels, but it’s lean and works with all manner of Rails associations — of course the common belongs_to and has_many, but also polymorphics and single table inheritance.

Leave a comment