2016-11-03 12:29:30 +05:30
|
|
|
= form_for @label, as: :label, url: url, html: { class: 'form-horizontal 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
|
|
|
|
|
|
|
.form-group
|
|
|
|
= f.label :title, class: 'control-label'
|
|
|
|
.col-sm-10
|
2016-06-02 11:05:42 +05:30
|
|
|
= f.text_field :title, class: "form-control", required: true, autofocus: true
|
2016-04-02 18:10:28 +05:30
|
|
|
.form-group
|
|
|
|
= f.label :description, class: 'control-label'
|
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :description, class: "form-control js-quick-submit"
|
2014-09-02 18:07:02 +05:30
|
|
|
.form-group
|
2015-12-23 02:04:40 +05:30
|
|
|
= f.label :color, "Background color", class: 'control-label'
|
2014-09-02 18:07:02 +05:30
|
|
|
.col-sm-10
|
|
|
|
.input-group
|
|
|
|
.input-group-addon.label-color-preview
|
2016-11-03 12:29:30 +05:30
|
|
|
= f.text_field :color, class: "form-control"
|
2014-09-02 18:07:02 +05:30
|
|
|
.help-block
|
2015-04-26 12:48:37 +05:30
|
|
|
Choose any color.
|
2014-09-02 18:07:02 +05:30
|
|
|
%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
|
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'
|