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

20 lines
722 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}",
2018-11-23 18:12:10 +08:00
locals: { notification: notification },
2017-08-30 00:49:07 +08:00
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>
<% if notification.deliver? %>
2018-11-23 18:12:10 +08:00
<%= I18n.t('notifications.deliver.download_text') %></br>
<% end %>
<%= l(notification.created_at, format: :full) %> | <%= sanitize_input(notification.message) %>
2016-09-29 20:49:58 +08:00
</div>
</div>
<li>
<% end %>