docs/5-forms.md in activeadmin-1.0.0.pre5 vs docs/5-forms.md in activeadmin-1.0.0

- old
+ new

@@ -171,5 +171,24 @@ end end f.actions end ``` + +## Customize the Create Another checkbox + +In order to simplify creating multiple resources you may enable ActiveAdmin to show nice "Create Another" checkbox alongside of Create Model +button. It may be enabled for the whole application: + +```ruby +ActiveAdmin.setup do |config| + config.create_another = true +end +``` + +or for the particular resource: + +```ruby +ActiveAdmin.register Post do + config.create_another = true +end +```