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