This HTML wasn't valid because it was a <span> containing the <div class="reply"> element and it wasn't needed because there aren't any flag actions in proposal notifications.
22 lines
775 B
Plaintext
22 lines
775 B
Plaintext
<div class="tabs-panel" id="tab-notifications">
|
|
<div class="row">
|
|
<div id="proposal_notifications" class="small-12 column notification-body">
|
|
<% if @notifications.blank? %>
|
|
<div class="callout primary text-center">
|
|
<%= t("proposals.show.no_notifications") %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% @notifications.each do |notification| %>
|
|
<div id="<%= dom_id(notification) %>">
|
|
<h3><%= notification.title %></h3>
|
|
<p class="more-info"><%= notification.created_at.to_date %></p>
|
|
<%= simple_format sanitize_and_auto_link(notification.body), {}, sanitize: false %>
|
|
|
|
<%= render "proposal_notifications/actions", notification: notification %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|