15 lines
768 B
Plaintext
15 lines
768 B
Plaintext
<%= messages_tag(bubble) do %>
|
|
<%# Template Dependency: comments/comment %>
|
|
<%# Template Dependency: event_summaries/event_summary %>
|
|
<%= render bubble.messages, cached: true %>
|
|
<%= render "comments/new", bubble: bubble %>
|
|
|
|
<div class="flex flex-column justify-start full-width txt-align-start">
|
|
<strong class="txt-uppercase">Subscribers</strong>
|
|
<p class="margin-none-block-start margin-block-end-half"><%= pluralize(bubble.watchers.count, "person") %> will be notified when someone comments on this.</p>
|
|
<div class="flex align-center flex-wrap gap-half max-width" style="font-size: 0.8em;">
|
|
<%= render partial: "bubbles/watches/watcher", collection: bubble.watchers.sorted_with_user_first(Current.user) %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|