1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/app/views/images/index.html.erb

23 lines
574 B
Plaintext

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