Newer
Older
dmpopidor / app / views / layouts / _notifications.html.erb
@Quentin Sonrel Quentin Sonrel on 16 May 2018 671 bytes Implemented Notifications
<% notifications.each do |a| %>
  <% unless a.acknowledged?(current_user) %>
    <div class="alert alert-<%= a.level %>">
      <span class="fa <%= fa_classes(a) %>"></span>
      <span class="aria-only"><strong><%= "#{a.level.capitalize}:" %></strong></span>
      <span><%= raw a.body %></span>
      <% if a.dismissable? %>
        <button class="close" data-dismiss="alert" data-url="<%= user_acknowledge_notification_path(a) %>" data-remote="true" data-method="post" data-params="notification_id=<%= a.id %>" aria-label="Close">
          <span class="fa fa-times-circle" aria-hidden="true"></span>
        </button>
      <% end %>
    </div>
  <% end %>
<% end %>