Files
fizzy/app/views/bubbles/pins/show.html.erb
T
Jason Zimdars 28a569c49b Tickets
2025-03-17 21:24:08 -05:00

13 lines
635 B
Plaintext

<%= turbo_frame_tag dom_id(@bubble, :pin) do %>
<% if @bubble.pinned_by? Current.user %>
<%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), method: :delete, class: "btn btn--reversed" do %>
<%= image_tag "pinned.svg", size: 16, aria: { hidden: true } %>
<span class="for-screen-reader">Un-pin this card</span>
<% end %>
<% else %>
<%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), class: "btn" do %>
<%= image_tag "unpinned.svg", size: 16, aria: { hidden: true } %>
<span class="for-screen-reader">Pin this card</span>
<% end %>
<% end %>
<% end %>