2017-11-24 02:05:53 +01:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('admin.action_logs.title')
|
|
|
|
|
2024-06-14 11:49:10 +02:00
|
|
|
= form_with url: admin_action_logs_url, method: :get, class: :simple_form do |form|
|
2020-04-03 13:06:34 +02:00
|
|
|
= hidden_field_tag :target_account_id, params[:target_account_id] if params[:target_account_id].present?
|
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset.filter-subset--with-select
|
|
|
|
%strong= t('admin.action_logs.filter_by_user')
|
|
|
|
.input.select.optional
|
2024-06-14 11:49:10 +02:00
|
|
|
= form.select :account_id,
|
|
|
|
options_from_collection_for_select(@auditable_accounts, :id, :username, params[:account_id]),
|
|
|
|
prompt: I18n.t('admin.accounts.moderation.all')
|
2020-04-03 13:06:34 +02:00
|
|
|
|
|
|
|
.filter-subset.filter-subset--with-select
|
|
|
|
%strong= t('admin.action_logs.filter_by_action')
|
|
|
|
.input.select.optional
|
2024-06-14 11:49:10 +02:00
|
|
|
= form.select :action_type,
|
|
|
|
options_for_select(Admin::ActionLogFilter::ACTION_TYPE_MAP.keys.map { |key| [I18n.t("admin.action_logs.action_types.#{key}"), key] }, params[:action_type]),
|
|
|
|
prompt: I18n.t('admin.accounts.moderation.all')
|
2020-04-03 13:06:34 +02:00
|
|
|
|
|
|
|
- if @action_logs.empty?
|
2023-03-15 04:15:36 +01:00
|
|
|
.muted-hint.center-text
|
2020-04-03 13:06:34 +02:00
|
|
|
= t 'admin.action_logs.empty'
|
|
|
|
- else
|
2022-01-17 09:41:33 +01:00
|
|
|
.report-notes
|
2021-03-07 07:06:56 +01:00
|
|
|
= render partial: 'action_log', collection: @action_logs
|
2017-11-24 02:05:53 +01:00
|
|
|
|
|
|
|
= paginate @action_logs
|