Files
fizzy/app/views/bubbles/_pop_toggle.html.erb
T
2024-11-12 15:26:16 -06:00

12 lines
504 B
Plaintext

<% if bubble.popped? %>
<%= button_to bucket_bubble_pop_path(bubble.bucket, bubble), method: :delete, class: "btn full-width justify-start borderless" do %>
<%= image_tag "pop.svg", aria: { hidden: true }, size: 24 %>
<span>Restore it</span>
<% end %>
<% else %>
<%= button_to bucket_bubble_pop_path(bubble.bucket, bubble), class: "btn full-width justify-start borderless" do %>
<%= image_tag "pop.svg", aria: { hidden: true }, size: 24 %>
<span>Pop it</span>
<% end %>
<% end %>