Skip to content

Instantly share code, notes, and snippets.

@raedatoui
Created March 17, 2012 06:51
Show Gist options
  • Save raedatoui/2055870 to your computer and use it in GitHub Desktop.
Save raedatoui/2055870 to your computer and use it in GitHub Desktop.
active admin tricks
index do
column :image, :sortable => :image do |model|
if model.image.to_s.nil?
raw('—')
else
raw('&#x2713')
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment