summaryrefslogtreecommitdiff
path: root/app/views/shared/_field.html.haml
blob: d74b00439494897cb412a1e7e72f45cc788094fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- name = field[:name]
- title = field[:title] || name.humanize
- value = @service.send(name)
- type = field[:type]
- placeholder = field[:placeholder]
- choices = field[:choices]
- default_choice = field[:default_choice]
- help = field[:help]

.form-group
  - if type == "password" && value.present?
    = form.label name, "Enter new #{title.downcase}", class: "control-label"
  - else
    = form.label name, title, class: "control-label"
  .col-sm-10
    - if type == 'text'
      = form.text_field name, class: "form-control", placeholder: placeholder
    - elsif type == 'textarea'
      = form.text_area name, rows: 5, class: "form-control", placeholder: placeholder
    - elsif type == 'checkbox'
      = form.check_box name
    - elsif type == 'select'
      = form.select name, options_for_select(choices, value ? value : default_choice), {}, { class: "form-control" }
    - elsif type == 'password'
      = form.password_field name, autocomplete: "new-password", class: "form-control"
    - if help
      %span.help-block= help