BigW Consortium Gitlab

_form.html.haml 1.04 KB
Newer Older
Valery Sizov committed
1
= form_for [:admin, @label], html: { class: 'form-horizontal label-form js-requires-input' } do |f|
2
  = form_errors(@label)
Valery Sizov committed
3 4 5 6 7

  .form-group
    = f.label :title, class: 'control-label'
    .col-sm-10
      = f.text_field :title, class: "form-control", required: true
Tap committed
8 9 10 11
  .form-group
    = f.label :description, class: 'control-label'
    .col-sm-10
      = f.text_field :description, class: "form-control js-quick-submit"
Valery Sizov committed
12
  .form-group
13
    = f.label :color, "Background color", class: 'control-label'
Valery Sizov committed
14 15 16
    .col-sm-10
      .input-group
        .input-group-addon.label-color-preview  
17
        = f.text_field :color, class: "form-control"
Valery Sizov committed
18 19 20 21 22 23 24 25 26 27 28 29 30
      .help-block
        Choose any color.
        %br
        Or you can choose one of suggested colors below

      .suggest-colors
        - suggested_colors.each do |color|
          = link_to '#', style: "background-color: #{color}", data: { color: color } do
             

  .form-actions
    = f.submit 'Save', class: 'btn btn-save js-save-button'
    = link_to "Cancel", admin_labels_path, class: 'btn btn-cancel'