scinote-web/app/views/system_notifications/_notification.html.erb
aignatov-bio c598541e09
System notification modal window [SCI-2957 and SCI-2958] (#1484)
* Added new system notification modal

* Adding loading system notification on sign in
2019-02-15 13:07:29 +01:00

25 lines
833 B
Text

<div
class="system-notification"
data-new="<%= notification.seen_at ? 0 : 1 %>"
data-unread="<%= notification.read_at ? 0 : 1 %>"
data-system-notification-id="<%= notification.id %>"
>
<div class="status-block">
<%= link_to system_notification_path(notification.id, format: :json), class: "modal-system-notification", remote: true do %>
<div class="status-icon <%= notification.seen_at ? "seen" : "" %>">
<i class="fas fa-gift"></i>
</div>
<% end %>
</div>
<div class="body-block">
<div class="datetime">
<span><%= l(notification.last_time_changed_at, format: :full) %></span>
</div>
<h5 class="title">
<strong><%= notification.title %></strong>
</h5>
<div class="message">
<span><%= notification.description %></span>
</div>
</div>
</div>