Skip to content

Instantly share code, notes, and snippets.

@andywenk
Created August 27, 2012 19:53
Show Gist options
  • Save andywenk/3491748 to your computer and use it in GitHub Desktop.
Save andywenk/3491748 to your computer and use it in GitHub Desktop.
orders show
show do | order |
attributes_table do
row :id
row :user_id do
user = User.find(order.user_id)
link_to("#{user.first_name} #{user.last_name}", admin_user_path(order.user_id))
end
row :created_at
row :updated_at
end
active_admin_comments
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment