<%= bubble.title %>
<%= "Added to #{bubble.bucket.name} by #{bubble.creator.name}" %> <%=
days = (Date.current - bubble.created_at.to_date).to_i
case days
when 0 then "today"
when 1 then "yesterday"
else "#{days} days ago".html_safe
end
%>
<%= render "bubbles/assignees", bubble: bubble %>
<%= render "bubbles/tags", bubble: bubble %>
<%= link_to bucket_bubble_path(bubble.bucket, bubble), class: "card__link" do %>