<%= image_tag notification.sender.image(:thirtytwo) %>
<%= notification.sender.name %>
<%= raw NotificationService.text_for_notification(notification) %>
<% end %>
<% if receipt.is_read? %>
<%= link_to 'mark as unread', mark_unread_notification_path(notification.id), remote: true, method: :put %>
<% else %>
<%= link_to 'mark as read', mark_read_notification_path(notification.id), remote: true, method: :put %>
<% end %>