views:

61

answers:

1

I have a model already in place. I just want some admin screens created for it which will do the add/edit/update/delete functionality.

My model name is User and it has properties user_id, first_name, last_name, user_status, created_at, updated_at, updated_by

Is it possible to use the script/generate scaffold on this model so that crud functionality would come on its own and then I can just make it look like rest of the application.

I dont know if it makes a difference but the user model has a has_many through relationship with another table

+1  A: 

I believe you can use nifty_scaffold for this

Omnipresent