about summary refs log tree commit diff
path: root/app/views/settings/keyword_mutes/index.html.haml
blob: 9ef8d55bc72b20ce701257042e8fd239fc5ba7c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- 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
        %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') }