= render partial: 'header'
-.activity-stream
- - @statuses.each do |status|
- = render partial: 'stream_entries/status', locals: { status: status, include_threads: false, is_successor: false, is_predecessor: false }
+- if @statuses.empty?
+ .accounts-grid
+ = render partial: 'nothing_here'
+- else
+ .activity-stream
+ - @statuses.each do |status|
+ = render partial: 'stream_entries/status', locals: { status: status }
= will_paginate @statuses, pagination_options