31 lines
1.1 KiB
Text
31 lines
1.1 KiB
Text
= 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 gl-form-input", required: true
|
|
.form-group.row
|
|
.col-sm-2.col-form-label
|
|
= f.label :description
|
|
.col-sm-10
|
|
= f.text_field :description, class: "form-control gl-form-input 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 gl-form-input"
|
|
.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 gl-button btn-success js-save-button'
|
|
= link_to _("Cancel"), admin_labels_path, class: 'btn gl-button btn-cancel'
|