summaryrefslogtreecommitdiff
path: root/app/views/admin/services/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/services/_form.html.haml')
-rw-r--r--app/views/admin/services/_form.html.haml3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/admin/services/_form.html.haml b/app/views/admin/services/_form.html.haml
index 7394925f01e..1cd6b8e75b1 100644
--- a/app/views/admin/services/_form.html.haml
+++ b/app/views/admin/services/_form.html.haml
@@ -22,6 +22,7 @@
- placeholder = field[:placeholder]
- choices = field[:choices]
- default_choice = field[:default_choice]
+ - help = field[:help]
.form-group
= f.label name, title, class: "control-label"
@@ -36,6 +37,8 @@
= f.select name, options_for_select(choices, value ? value : default_choice), {}, { class: "form-control" }
- elsif type == 'password'
= f.password_field name, class: 'form-control'
+ - if help
+ %span.help-block= help
.form-actions
= f.submit 'Save', class: 'btn btn-save'