~cytrogen/masto-fe

ref: 9974163776b3e65e7cfa41e6293876909a1635b7 masto-fe/app/views/admin/disputes/appeals/index.html.haml -rw-r--r-- 605 bytes
99741637 — Matt Jankowski Consolidate inclusion of `admin` js pack link (#26628) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- content_for :page_title do
  = t('admin.disputes.appeals.title')

.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