mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
33 lines
783 B
Plaintext
33 lines
783 B
Plaintext
<% content_for :title do %>
|
|
<h1>My Images</h1>
|
|
→
|
|
<%= @image.image.name %>
|
|
<% end %>
|
|
|
|
<div class="show-image">
|
|
<div class="image-container">
|
|
<%= render "image", image: @image %>
|
|
</div>
|
|
|
|
<div class="image-info">
|
|
<ul class="image-tags">
|
|
<% @image.tags.each do |tag| %>
|
|
<li class="image-tag" id="tag-<%= tag %>">
|
|
<%= tag %>
|
|
<%= link_to "×".html_safe,
|
|
user_image_tag_path(@image, tag),
|
|
method: :delete,
|
|
class: "delete-tag" %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<div class="new-tag-form">
|
|
<%= form_tag user_image_tags_path(@image), method: :post do %>
|
|
<%= text_field_tag :tag %>
|
|
<%= submit_tag "Add Tag" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|