summaryrefslogtreecommitdiffstats
path: root/app/views/admin/follow_recommendations/show.html.haml
blob: c8ad653a88a95fd069c9de28f2cf16b587f374d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
- content_for :page_title do
  = t('admin.follow_recommendations.title')

%p= t('admin.follow_recommendations.description_html')

%hr.spacer/

= form_tag admin_follow_recommendations_path, method: 'GET', class: 'simple_form' do
  - RelationshipFilter::KEYS.each do |key|
    = hidden_field_tag key, params[key] if params[key].present?

  .filters
    .filter-subset.filter-subset--with-select
      %strong= t('admin.follow_recommendations.language')
      .input.select.optional
        = select_tag :language,
                     options_for_select(Trends.available_locales.map { |key| [standard_locale_name(key), key] }, @language)
    .filter-subset
      %strong= t('admin.follow_recommendations.status')
      %ul
        %li= filter_link_to t('admin.accounts.moderation.active'), status: nil
        %li= filter_link_to t('admin.follow_recommendations.suppressed'), status: 'suppressed'

= form_for(@form, url: admin_follow_recommendations_path, method: :patch) do |f|
  - RelationshipFilter::KEYS.each do |key|
    = hidden_field_tag key, params[key] if params[key].present?

  .batch-table
    .batch-table__toolbar
      %label.batch-table__toolbar__select.batch-checkbox-all
        = check_box_tag :batch_checkbox_all, nil, false
      .batch-table__toolbar__actions
        - if params[:status].blank? && can?(:suppress, :follow_recommendation)
          = f.button safe_join([material_symbol('close'), t('admin.follow_recommendations.suppress')]),
                     class: 'table-action-link',
                     data: { confirm: t('admin.reports.are_you_sure') },
                     name: :suppress,
                     type: :submit
        - if params[:status] == 'suppressed' && can?(:unsuppress, :follow_recommendation)
          = f.button safe_join([material_symbol('add'), t('admin.follow_recommendations.unsuppress')]),
                     class: 'table-action-link',
                     name: :unsuppress,
                     type: :submit
    .batch-table__body
      - if @accounts.empty?
        = nothing_here 'nothing-here--under-tabs'
      - else
        = render partial: 'account', collection: @accounts, locals: { f: f }

= paginate @accounts