The little menu with the hide notification link and block user link has been added to each proposal notification. JS for adding the fade efect has also been added.
24 lines
840 B
Plaintext
24 lines
840 B
Plaintext
<div class="tabs-panel" id="tab-notifications" role="tab">
|
|
<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 text_with_links(notification.body), {}, sanitize: false %>
|
|
|
|
<span class="js-flag-actions">
|
|
<%= render 'proposal_notifications/actions', notification: notification %>
|
|
</span>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|