Skip to content

Instantly share code, notes, and snippets.

@JakubOboza
Created February 20, 2012 20:37
Show Gist options
  • Save JakubOboza/1871257 to your computer and use it in GitHub Desktop.
Save JakubOboza/1871257 to your computer and use it in GitHub Desktop.
ActiveAdmin.register User do
index do
column :email
column :last_sign_in_at
column :sign_in_count
default_actions
end
form do |f|
f.inputs "Details" do
f.input :name
f.input :email
end
f.inputs "Security" do
f.input :password
f.input :password_confirmation
end
f.buttons
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment