<% if bubble.popped? %>
Popped by <%= bubble.popped_by.name %> on <%= local_datetime_tag(bubble.popped_at, style: :shortdate) %>.
<%= button_to bucket_bubble_pop_path(bubble.bucket, bubble), method: :delete, class: "btn btn--plain borderless fill-transparent" do %>
Un-pop
<% end %>
<% else %>
<%= button_to bucket_bubble_pop_path(bubble.bucket, bubble), class: "btn borderless" do %>
<%= image_tag "pop.svg", aria: { hidden: true }, size: 24, class: "colorize--white" %>
Pop
<% end %>
Auto-pops <%= local_datetime_tag(bubble.auto_pop_at, style: :indays) %>.
<% end %>