1 <%# locals: (notification:, record:) %>
4 "notifications/notification_header",
5 :title => t(".headline.#{record.event}"),
8 :anchor => "c#{record.id}"
10 :timestamp => record.created_at
14 "notifications/notification_body",
15 :author => record.author
17 <p class="text-body-secondary mb-1">
19 "notifications.note_comment.description.#{record.event}_html",
20 :commenter_name_with_link => link_to(
21 record.author.display_name,
24 :note_id_with_link => link_to("##{record.note_id}", record.note),
25 :note_text => record.note.description
28 <% if record.body.present? %>
29 <%= render "notifications/notification_quote", :body => record.body %>