about summary refs log tree commit diff
path: root/app/views/tags/show.html.haml
blob: dd42fe22c5441b75df9bf16cb24015f1e8c3c10d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
- if @statuses.empty?
  .accounts-grid
    = render partial: 'accounts/nothing_here'
- else
  .activity-stream
    = render partial: 'stream_entries/status', collection: @statuses, as: :status, cached: true

.pagination
  - if @statuses.size == 20
    = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), tag_url(@tag, max_id: @statuses.last.id), class: 'next_page', rel: 'next'