mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
17 lines
415 B
Plaintext
17 lines
415 B
Plaintext
<div class="image-info">
|
|
<div class="image-tags" data-controller="tags">
|
|
<%= render "tags/tags", image: image, tags: image.tags %>
|
|
|
|
<div class="new-tag-form">
|
|
<%= form_tag(
|
|
image_tags_path(image),
|
|
method: :post,
|
|
data: {"turbo-frame": "tags"}
|
|
) do %>
|
|
<%= text_field_tag :tag, nil %>
|
|
<%= submit_tag "Add Tag" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|