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.
22 lines
707 B
22 lines
707 B
- 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
|
|
|