8 lines
418 B
Text
8 lines
418 B
Text
.notification_element{data: {guid: note.id, type: (types.key(note.type) || "")},
|
|
class: (note.unread ? "unread" : "read")}
|
|
.pull-right.unread-toggle
|
|
%i.entypo-eye{title: (note.unread ? t("notifications.index.mark_read") : t("notifications.index.mark_unread"))}
|
|
= person_image_tag note.actors.first, :thumb_small
|
|
.notification_message
|
|
= notification_message_for(note)
|
|
%div= timeago(note.created_at)
|