BigW Consortium Gitlab

_form.html.haml 1.27 KB
Newer Older
1
= form_for [@project.namespace.becomes(Namespace), @project, @label], html: { class: 'form-horizontal label-form js-quick-submit js-requires-input' } do |f|
2
  = form_errors(@label)
3 4 5 6

  .form-group
    = f.label :title, class: 'control-label'
    .col-sm-10
7
      = f.text_field :title, class: "form-control", required: true, autofocus: 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"
12
  .form-group
13
    = f.label :color, "Background color", class: 'control-label'
14 15 16
    .col-sm-10
      .input-group
        .input-group-addon.label-color-preview  
Douwe Maan committed
17
        = f.color_field :color, class: "form-control"
18
      .help-block
19
        Choose any color.
20 21 22 23 24 25 26 27 28
        %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
29 30 31 32
    - if @label.persisted?
      = f.submit 'Save changes', class: 'btn btn-save js-save-button'
    - else
      = f.submit 'Create Label', class: 'btn btn-create js-save-button'
Vinnie Okada committed
33
    = link_to "Cancel", namespace_project_labels_path(@project.namespace, @project), class: 'btn btn-cancel'