summaryrefslogtreecommitdiff
path: root/app/views/admin/labels/_form.html.haml
blob: 299d0a12e6c102a10fa6f295fba60f595cb5f4bc (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
    .col-sm-2.col-form-label
      = f.label :title
    .col-sm-10
      = f.text_field :title, class: "form-control", required: true
  .form-group.row
    .col-sm-2.col-form-label
      = f.label :description
    .col-sm-10
      = f.text_field :description, class: "form-control js-quick-submit"
  .form-group.row
    .col-sm-2.col-form-label
      = f.label :color, _("Background color")
    .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 the suggested colors below")

      = render_suggested_colors

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