about summary refs log tree commit diff
path: root/app/views/admin/rules/edit.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/rules/edit.html.haml')
-rw-r--r--app/views/admin/rules/edit.html.haml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/admin/rules/edit.html.haml b/app/views/admin/rules/edit.html.haml
new file mode 100644
index 000000000..ba7e6451a
--- /dev/null
+++ b/app/views/admin/rules/edit.html.haml
@@ -0,0 +1,11 @@
+- content_for :page_title do
+  = t('admin.rules.edit')
+
+= simple_form_for @rule, url: admin_rule_path(@rule) do |f|
+  = render 'shared/error_messages', object: @rule
+
+  .fields-group
+    = f.input :text, wrapper: :with_block_label
+
+  .actions
+    = f.button :button, t('generic.save_changes'), type: :submit