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.

54 lines
2.5 KiB

  1. - content_for :page_title do
  2. = t('settings.relationships')
  3. .filters
  4. .filter-subset
  5. %strong= t 'relationships.relationship'
  6. %ul
  7. %li= filter_link_to t('accounts.following', count: current_account.following_count), relationship: nil
  8. %li= filter_link_to t('accounts.followers', count: current_account.followers_count), relationship: 'followed_by'
  9. %li= filter_link_to t('relationships.mutual'), relationship: 'mutual'
  10. .filter-subset
  11. %strong= t 'relationships.status'
  12. %ul
  13. %li= filter_link_to t('generic.all'), status: nil
  14. %li= filter_link_to t('relationships.primary'), status: 'primary'
  15. %li= filter_link_to t('relationships.moved'), status: 'moved'
  16. .filter-subset
  17. %strong= t 'relationships.activity'
  18. %ul
  19. %li= filter_link_to t('generic.all'), activity: nil
  20. %li= filter_link_to t('relationships.dormant'), activity: 'dormant'
  21. .filter-subset
  22. %strong= t 'generic.order_by'
  23. %ul
  24. %li= filter_link_to t('relationships.most_recent'), order: nil
  25. %li= filter_link_to t('relationships.last_active'), order: 'active'
  26. = form_for(@form, url: relationships_path, method: :patch) do |f|
  27. = hidden_field_tag :page, params[:page] || 1
  28. = hidden_field_tag :relationship, params[:relationship]
  29. = hidden_field_tag :status, params[:status]
  30. = hidden_field_tag :activity, params[:activity]
  31. = hidden_field_tag :order, params[:order]
  32. .batch-table
  33. .batch-table__toolbar
  34. %label.batch-table__toolbar__select.batch-checkbox-all
  35. = check_box_tag :batch_checkbox_all, nil, false
  36. .batch-table__toolbar__actions
  37. = f.button safe_join([fa_icon('user-times'), t('relationships.remove_selected_follows')]), name: :unfollow, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') } unless followed_by_relationship?
  38. = f.button safe_join([fa_icon('trash'), t('relationships.remove_selected_followers')]), name: :remove_from_followers, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') } unless following_relationship?
  39. = f.button safe_join([fa_icon('trash'), t('relationships.remove_selected_domains')]), name: :block_domains, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') } if followed_by_relationship?
  40. .batch-table__body
  41. - if @accounts.empty?
  42. = nothing_here 'nothing-here--under-tabs'
  43. - else
  44. = render partial: 'account', collection: @accounts, locals: { f: f }
  45. = paginate @accounts