diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/tags/show.html.haml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/tags/show.html.haml b/app/views/tags/show.html.haml index e69de29bb..0e6fd2db7 100644 --- a/app/views/tags/show.html.haml +++ b/app/views/tags/show.html.haml @@ -0,0 +1,8 @@ +- if @statuses.empty? + .accounts-grid + = render partial: 'accounts/nothing_here' +- else + .activity-stream + = render partial: 'stream_entries/status', collection: @statuses, as: :status, cached: true + += will_paginate @statuses, pagination_options |