Retrospring/app/views/settings/_muted.haml

25 lines
975 B
Plaintext

.card
.card-body
%h2 Muted words
%p Muting words (or longer phrases) will prevent questions containing those to appear in your inbox.
%p Note: Filtered questions are discarded completely from your inbox, and won't reappear if you remove a filter later on.
.js-rules-list
- @rules.each do |rule|
.form-group
.input-group
%input.form-control{ disabled: true, value: rule.muted_phrase }
.input-group-append
%button.btn.btn-danger{ type: 'button', data: { id: rule.id } } Remove
.form-group
%form
.input-group
%input.form-control#new-rule-text{ placeholder: 'Add a new muted word...' }
.input-group-append
%button.btn.btn-primary#new-rule-submit{ type: 'submit' } Add
%template#rule-template
.form-group
.input-group
%input.form-control{ disabled: true }
.input-group-append
%button.btn.btn-danger{ type: 'button' } Remove