~cytrogen/masto-fe

ref: e3fd07197379f1ac7fd4a761b3ff55effa1a2a6c masto-fe/app/views/admin/disputes/appeals/index.html.haml -rw-r--r-- 707 bytes
e3fd0719 — renovate[bot] Update dependency rspec-sidekiq to v4 (#26627) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- content_for :page_title do
  = t('admin.disputes.appeals.title')

- content_for :header_tags do
  = javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous'

.filters
  .filter-subset
    %strong= t('admin.tags.review')
    %ul
      %li= filter_link_to safe_join([t('admin.accounts.moderation.pending'), "(#{Appeal.pending.count})"], ' '), status: 'pending'
      %li= filter_link_to t('admin.trends.approved'), status: 'approved'
      %li= filter_link_to t('admin.trends.rejected'), status: 'rejected'

- if @appeals.empty?
  .muted-hint.center-text
    = t 'admin.disputes.appeals.empty'
- else
  .announcements-list
    = render partial: 'appeal', collection: @appeals

= paginate @appeals