scinote-web/app/views/user_notifications/_recent_notifications.html.erb

17 lines
603 B
Plaintext
Raw Normal View History

2016-09-29 20:49:58 +08:00
<% @recent_notifications.each do |notification| %>
2016-10-03 14:20:23 +08:00
<li class="notification <%= 'unseen' unless notification.already_seen(current_user) %>">
2016-09-29 20:49:58 +08:00
<div class="row">
2016-10-03 14:20:23 +08:00
<div class="col-xs-2">
2017-08-30 00:49:07 +08:00
<%= render partial: "user_notifications/icons/#{notification.type_of}",
locals: {notification: notification},
formats: [:html] %>
2016-09-29 20:49:58 +08:00
</div>
2016-10-03 14:20:23 +08:00
<div class="col-xs-10">
<strong><%= sanitize_input(notification.title) %></strong> <br>
<%= l(notification.created_at, format: :full) %> | <%= sanitize_input(notification.message) %>
2016-09-29 20:49:58 +08:00
</div>
</div>
<li>
<% end %>