be493b6c0d
Conflicts: - `app/models/account.rb`: Not a real conflict, just upstream getting rid of unused constants too close to glitch-soc-specific contents. Removed unused constants like upstream did. - `app/models/trends.rb`: Conflict because glitch-soc disabled email notifications for trending links. Upstream has refactored this quite a bit and added trending posts. Took upstream code, but disabling the extra trending stuff will come in another commit. - `app/views/admin/trends/links/index.html.haml`: Conflict due to glitch-soc's theming system. Ported upstream changes accordingly.
40 lines
1.7 KiB
Text
40 lines
1.7 KiB
Text
- content_for :page_title do
|
|
= t('admin.trends.preview_card_providers.title')
|
|
|
|
.filters
|
|
.filter-subset
|
|
%strong= t('admin.tags.review')
|
|
%ul
|
|
%li= filter_link_to t('generic.all'), status: nil
|
|
%li= filter_link_to t('admin.trends.approved'), status: 'approved'
|
|
%li= filter_link_to t('admin.trends.rejected'), status: 'rejected'
|
|
%li= filter_link_to safe_join([t('admin.accounts.moderation.pending'), "(#{PreviewCardProvider.pending_review.count})"], ' '), status: 'pending_review'
|
|
.back-link
|
|
= link_to admin_trends_links_path do
|
|
= fa_icon 'chevron-left fw'
|
|
= t('admin.trends.links.title')
|
|
|
|
|
|
%hr.spacer/
|
|
|
|
= form_for(@form, url: batch_admin_trends_links_preview_card_providers_path) do |f|
|
|
= hidden_field_tag :page, params[:page] || 1
|
|
|
|
- Trends::PreviewCardProviderFilter::KEYS.each do |key|
|
|
= hidden_field_tag key, params[key] if params[key].present?
|
|
|
|
.batch-table.optional
|
|
.batch-table__toolbar
|
|
%label.batch-table__toolbar__select.batch-checkbox-all
|
|
= check_box_tag :batch_checkbox_all, nil, false
|
|
.batch-table__toolbar__actions
|
|
= f.button safe_join([fa_icon('check'), t('admin.trends.allow')]), name: :approve, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
= f.button safe_join([fa_icon('times'), t('admin.trends.disallow')]), name: :reject, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
|
|
.batch-table__body
|
|
- if @preview_card_providers.empty?
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
- else
|
|
= render partial: 'preview_card_provider', collection: @preview_card_providers, locals: { f: f }
|
|
|
|
= paginate @preview_card_providers
|