cirandas.net

ref: master

plugins/admin_notifications/views/admin_notifications_plugin_public/notifications_with_popup.html.erb


<% @notifications = AdminNotificationsPlugin::Notification.with_popup(environment, current_user, @previous_path).where("id NOT IN (?)", @hide_notifications) %>

<% @notifications.each do |notification| %> <% if !notification.title.blank? %>
notification notification-with-title" data-notification="<%=notification.id%>">
<%= notification.title %>
<%= AdminNotificationsPlugin::NotificationHelper.substitute_variables(notification.message, current_user).html_safe %>
<% else %>
notification notification-without-title" data-notification="<%=notification.id%>">
<%= AdminNotificationsPlugin::NotificationHelper.substitute_variables(notification.message, current_user).html_safe %>
<% end %> <% end %>