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
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label
|
|
|
|
= f.label :title
|
2014-09-02 18:07:02 +05:30
|
|
|
.col-sm-10
|
2019-07-07 11:18:12 +05:30
|
|
|
= f.text_field :title, class: "form-control js-label-title qa-label-title", required: true, autofocus: true
|
|
|
|
= render_if_exists 'shared/labels/create_label_help_text'
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label
|
|
|
|
= f.label :description
|
2016-04-02 18:10:28 +05:30
|
|
|
.col-sm-10
|
2018-12-13 13:39:08 +05:30
|
|
|
= f.text_field :description, class: "form-control js-quick-submit qa-label-description"
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-group.row
|
2019-09-04 21:01:54 +05:30
|
|
|
.col-sm-2.col-form-label
|
|
|
|
= f.label :color, "Background color"
|
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
|
2018-12-13 13:39:08 +05:30
|
|
|
= f.text_field :color, class: "form-control qa-label-color"
|
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
|
2019-09-04 21:01:54 +05:30
|
|
|
= render_suggested_colors
|
2014-09-02 18:07:02 +05:30
|
|
|
.form-actions
|
2015-12-23 02:04:40 +05:30
|
|
|
- if @label.persisted?
|
2018-12-05 23:21:45 +05:30
|
|
|
= f.submit 'Save changes', class: 'btn btn-success js-save-button'
|
2015-12-23 02:04:40 +05:30
|
|
|
- else
|
2018-12-13 13:39:08 +05:30
|
|
|
= f.submit 'Create label', class: 'btn btn-success js-save-button qa-label-create-button'
|
2016-11-03 12:29:30 +05:30
|
|
|
= link_to 'Cancel', back_path, class: 'btn btn-cancel'
|