debian-mirror-gitlab/app/views/shared/labels/_form.html.haml

35 lines
1.3 KiB
Text
Raw Normal View History

2018-11-08 19:23:39 +05:30
= form_for @label, as: :label, url: url, html: { class: 'label-form js-quick-submit js-requires-input' } do |f|
2016-06-02 11:05:42 +05:30
= form_errors(@label)
2014-09-02 18:07:02 +05:30
2018-11-08 19:23:39 +05:30
.form-group.row
= f.label :title, class: 'col-form-label col-sm-2'
2014-09-02 18:07:02 +05:30
.col-sm-10
2016-06-02 11:05:42 +05:30
= f.text_field :title, class: "form-control", required: true, autofocus: true
2018-11-08 19:23:39 +05:30
.form-group.row
= f.label :description, class: 'col-form-label col-sm-2'
2016-04-02 18:10:28 +05:30
.col-sm-10
= f.text_field :description, class: "form-control js-quick-submit"
2018-11-08 19:23:39 +05:30
.form-group.row
= f.label :color, "Background color", class: 'col-form-label col-sm-2'
2014-09-02 18:07:02 +05:30
.col-sm-10
.input-group
2018-11-08 19:23:39 +05:30
.input-group-prepend
.input-group-text.label-color-preview  
2016-11-03 12:29:30 +05:30
= f.text_field :color, class: "form-control"
2018-11-08 19:23:39 +05:30
.form-text.text-muted
2015-04-26 12:48:37 +05:30
Choose any color.
2014-09-02 18:07:02 +05:30
%br
2018-11-08 19:23:39 +05:30
Or you can choose one of the suggested colors below
2014-09-02 18:07:02 +05:30
.suggest-colors
- suggested_colors.each do |color|
= link_to '#', style: "background-color: #{color}", data: { color: color } do
 
.form-actions
2015-12-23 02:04:40 +05:30
- if @label.persisted?
= f.submit 'Save changes', class: 'btn btn-save js-save-button'
- else
2017-08-17 22:00:37 +05:30
= f.submit 'Create label', class: 'btn btn-create js-save-button'
2016-11-03 12:29:30 +05:30
= link_to 'Cancel', back_path, class: 'btn btn-cancel'