You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
409 B

  1. - if @statuses.empty?
  2. .accounts-grid
  3. = render partial: 'accounts/nothing_here'
  4. - else
  5. .activity-stream.h-feed
  6. = render partial: 'stream_entries/status', collection: @statuses, as: :status, cached: true
  7. .pagination
  8. - if @statuses.size == 20
  9. = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), tag_url(@tag, max_id: @statuses.last.id), class: 'next_page', rel: 'next'