1 <%# locals: (notification:, record:) %>
4 "notifications/notification_header",
5 :title => t(".headline"),
6 :uri => changeset_path(
8 :anchor => "c#{record.id}"
10 :timestamp => record.created_at
14 "notifications/notification_body",
15 :author => record.author
17 <p class="text-body-secondary event-description">
18 <% if record.changeset.comment %>
20 "notifications.changeset_comment.description_with_summary_html",
21 :commenter_name_with_link => link_to(
22 record.author.display_name,
25 :changeset_id_with_link => link_to("##{record.changeset_id}", record.changeset),
26 :changeset_summary => record.changeset.comment
30 "notifications.changeset_comment.description_without_summary_html",
31 :commenter_name_with_link => link_to(
32 record.author.display_name,
35 :changeset_id_with_link => link_to("##{record.changeset_id}", record.changeset)
39 <%= render "notifications/notification_quote", :body => record.body %>