about summary refs log tree commit diff
path: root/app/views/settings/keyword_mutes/new.html.haml
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-10-15 04:51:42 -0500
committerDavid Yip <yipdw@member.fsf.org>2017-10-21 14:54:36 -0500
commit2e03a10059889cb05d4fab7736447a4315f90bf5 (patch)
treec5f4a997e9ed281ed356284f2c2450fb3a46d8bf /app/views/settings/keyword_mutes/new.html.haml
parent4fa2f7e82d68c974ecfdb8896f15a5a3aba25828 (diff)
Spike out index and new views for keyword mutes controller.
Diffstat (limited to 'app/views/settings/keyword_mutes/new.html.haml')
-rw-r--r--app/views/settings/keyword_mutes/new.html.haml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/views/settings/keyword_mutes/new.html.haml b/app/views/settings/keyword_mutes/new.html.haml
new file mode 100644
index 000000000..5e8268e97
--- /dev/null
+++ b/app/views/settings/keyword_mutes/new.html.haml
@@ -0,0 +1,19 @@
+- content_for :page_title do
+  = t('settings.keyword_mutes.add_keyword')
+
+= simple_form_for @keyword_mute, url: settings_keyword_mutes_path do |f|
+  = render 'shared/error_messages', object: @keyword_mute
+
+  %p.muted-hint
+    Keywords match word boundaries case-insensitively.  For example:
+    %ul
+      %li
+        <strong>alice</strong> matches <strong>alice</strong>, <strong>Alice</strong>, and <strong>Alice's</strong>
+      %li
+        <strong>bob</strong> matches <strong>bob</strong> and <strong>Bob</strong> but not <strong>bobcat</strong>
+
+  .fields-group
+    = f.input :keyword
+
+  .actions
+    = f.button :button, t('admin.keyword_mutes.add_keyword'), type: :submit