mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-08 16:04:49 +00:00
92c06a1113
Conflicts: - `app/controllers/admin/base_controller.rb`: Minor conflict caused by glitch-soc's theming system. - `app/javascript/mastodon/initial_state.js`: Minor conflict caused by glitch-soc making use of max_toot_chars. - `app/models/form/admin_settings.rb`: Minor conflict caused by glitch-soc's theming system. - `app/models/trends.rb`: Minor conflict caused by glitch-soc having more granular notification settings for trends. - `app/views/admin/accounts/index.html.haml`: Minor conflict caused by glitch-soc's theming system. - `app/views/admin/instances/show.html.haml`: Minor conflict caused by glitch-soc's theming system. - `app/views/layouts/application.html.haml`: Minor conflict caused by glitch-soc's theming system. - `app/views/settings/preferences/notifications/show.html.haml`: Minor conflict caused by glitch-soc having more granular notification settings for trends. - `config/navigation.rb`: Minor conflict caused by glitch-soc having additional navigation items for the theming system while upstream slightly changed every line.
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
- content_for :page_title do
|
|
= t('admin.action_logs.title')
|
|
|
|
= form_tag admin_action_logs_url, method: 'GET', class: 'simple_form' do
|
|
= 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
|
|
= select_tag :account_id, options_from_collection_for_select(@auditable_accounts, :id, :username, params[:account_id]), prompt: I18n.t('admin.accounts.moderation.all')
|
|
|
|
.filter-subset.filter-subset--with-select
|
|
%strong= t('admin.action_logs.filter_by_action')
|
|
.input.select.optional
|
|
= select_tag :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')
|
|
|
|
- if @action_logs.empty?
|
|
%div.muted-hint.center-text
|
|
= t 'admin.action_logs.empty'
|
|
- else
|
|
.report-notes
|
|
= render partial: 'action_log', collection: @action_logs
|
|
|
|
= paginate @action_logs
|