I want to do this: I have a Model called Item with a field called name generated with scaffold:
rails g scaffold Item name:string
My question is: When I have to create a new Item I go in localhost/3000/new and I only can create a Item each time. How I can repeat automaticaly n times? Each time i push create I want to create n registers. Does Rails Have an easy way to do this. Thanks and sorry for my English level.