parent
20e75666b2
commit
71b318dedc
@ -1,14 +0,0 @@ |
|||||||
.fields-group |
|
||||||
= f.input :keyword |
|
||||||
= f.check_box :whole_word |
|
||||||
= f.label :whole_word, t('keyword_mutes.match_whole_word') |
|
||||||
%br |
|
||||||
= f.check_box :apply_to_mentions |
|
||||||
= f.label :apply_to_mentions, t('keyword_mutes.apply_to_mentions') |
|
||||||
|
|
||||||
.actions |
|
||||||
- if f.object.persisted? |
|
||||||
= f.button :button, t('generic.save_changes'), type: :submit |
|
||||||
= link_to t('keyword_mutes.remove'), settings_keyword_mute_path(f.object), class: 'negative button', method: :delete, data: { confirm: t('admin.accounts.are_you_sure') } |
|
||||||
- else |
|
||||||
= f.button :button, t('keyword_mutes.add_keyword'), type: :submit |
|
@ -1,13 +0,0 @@ |
|||||||
%tr |
|
||||||
%td |
|
||||||
= keyword_mute.keyword |
|
||||||
%td |
|
||||||
- if keyword_mute.whole_word |
|
||||||
%i.fa.fa-check |
|
||||||
%td |
|
||||||
- if keyword_mute.apply_to_mentions |
|
||||||
%i.fa.fa-check |
|
||||||
%td |
|
||||||
= table_link_to 'edit', t('keyword_mutes.edit'), edit_settings_keyword_mute_path(keyword_mute) |
|
||||||
%td |
|
||||||
= table_link_to 'times', t('keyword_mutes.remove'), settings_keyword_mute_path(keyword_mute), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') } |
|
@ -1,6 +0,0 @@ |
|||||||
- content_for :page_title do |
|
||||||
= t('keyword_mutes.edit_keyword') |
|
||||||
|
|
||||||
= simple_form_for @keyword_mute, url: settings_keyword_mute_path(@keyword_mute), as: :keyword_mute do |f| |
|
||||||
= render 'shared/error_messages', object: @keyword_mute |
|
||||||
= render 'fields', f: f |
|
@ -1,19 +0,0 @@ |
|||||||
- content_for :page_title do |
|
||||||
= t('settings.keyword_mutes') |
|
||||||
|
|
||||||
.table-wrapper |
|
||||||
%table.table |
|
||||||
%thead |
|
||||||
%tr |
|
||||||
%th= t('keyword_mutes.keyword') |
|
||||||
%th= t('keyword_mutes.match_whole_word') |
|
||||||
%th= t('keyword_mutes.apply_to_mentions') |
|
||||||
%th |
|
||||||
%th |
|
||||||
%tbody |
|
||||||
= render partial: 'keyword_mute', collection: @keyword_mutes, as: :keyword_mute |
|
||||||
|
|
||||||
= paginate @keyword_mutes |
|
||||||
.simple_form |
|
||||||
= link_to t('keyword_mutes.add_keyword'), new_settings_keyword_mute_path, class: 'button' |
|
||||||
= link_to t('keyword_mutes.remove_all'), destroy_all_settings_keyword_mutes_path, class: 'button negative', method: :delete, data: { confirm: t('admin.accounts.are_you_sure') } |
|
@ -1,6 +0,0 @@ |
|||||||
- content_for :page_title do |
|
||||||
= t('keyword_mutes.add_keyword') |
|
||||||
|
|
||||||
= simple_form_for @keyword_mute, url: settings_keyword_mutes_path, as: :keyword_mute do |f| |
|
||||||
= render 'shared/error_messages', object: @keyword_mute |
|
||||||
= render 'fields', f: f |
|
Loading…
Reference in new issue