Last active
August 29, 2015 13:57
-
-
Save mgswolf/9676542 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#show.html.erb | |
<%= link_to show_image(r.imagem_url(:thumb)), reclamacao_path(r) %> | |
<%= link_to reclamacao_path(r) do %> | |
<%= image_tag(r.imagem_url(:thumb)) if r.imagem.present? %> | |
<% end %> | |
#application_helper.rb | |
def show_image(image, style = :thumb) | |
image ? (image_tag image(style)) : 'noimage' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment