diff --git a/app/views/notifications/index.html.haml b/app/views/notifications/index.html.haml
index 333bc035b..b87de6a4d 100644
--- a/app/views/notifications/index.html.haml
+++ b/app/views/notifications/index.html.haml
@@ -1,5 +1,8 @@
%ul
- @notifications.each do |note|
+ %h2= Date.parse(note.created_at.to_s).in_words
%li
- = link_to "#{note.person.name.titleize}", person_path(note.person)
- = object_link(note)
+ %h3
+ = link_to "#{note.person.name.titleize}", person_path(note.person)
+ = object_link(note)
+ %span.description= time_ago_in_words(note.created_at)