summaryrefslogtreecommitdiff
path: root/app/views/admin/labels/_form.html.haml
blob: ee51b44e83ef38828109375b18dff26fe9d05519 (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
28
29
30
31
= form_for [:admin, @label], html: { class: 'label-form js-requires-input' } do |f|
  = form_errors(@label)

  .form-group.row
    = f.label :title, class: 'col-form-label col-sm-2'
    .col-sm-10
      = f.text_field :title, class: "form-control", required: true
  .form-group.row
    = f.label :description, class: 'col-form-label col-sm-2'
    .col-sm-10
      = f.text_field :description, class: "form-control js-quick-submit"
  .form-group.row
    = f.label :color, "Background color", class: 'col-form-label col-sm-2'
    .col-sm-10
      .input-group
        .input-group-prepend
          .input-group-text.label-color-preview  
        = f.text_field :color, class: "form-control"
      .form-text.text-muted
        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'