1
0
Fork 0
forked from OpenNeo/impress
impress/app/views/outfits/_outfit.html.haml

15 lines
491 B
Text
Raw Normal View History

= outfit_li_for(outfit) do
2012-07-29 12:43:28 -07:00
- if outfit.image?
= link_to image_tag(outfit.image.small.url), outfit
%header
.outfit-star
= link_to outfit.name, outfit, :class => 'outfit-name'
%footer
= link_to t('.edit'), outfit, :class => 'outfit-edit-link'
2013-01-26 10:42:38 -08:00
= button_to t('.delete'), outfit, :method => 'delete',
:class => 'outfit-delete-button',
:confirm => t('.delete_confirmation',
:outfit_name => outfit.name)