% content_for :title do %>
My Images
<% end %>
<% @images.each do |image| %>
-
<%= link_to image_tag(image.image.thumb('200x200#').url),
user_image_path(image), class: :image %>
<%= link_to 'Delete', user_image_path(image),
method: :delete, data: { confirm: 'Are you sure?' } %>
<% end %>
Upload New Image
<%= simple_form_for [@current_user, @images.new] do |f| %>
<%= f.input :user_id, as: :hidden %>
<%= f.input :image, as: :file %>
<%= f.submit %>
<% end %>