2018-04-12 16:11:22 -04:00
|
|
|
= form_for [:admin, @label], html: { class: 'label-form js-requires-input' } do |f|
|
2016-04-04 21:25:38 -04:00
|
|
|
= form_errors(@label)
|
2015-09-03 08:50:23 -04:00
|
|
|
|
2018-04-12 16:11:22 -04:00
|
|
|
.form-group.row
|
2018-04-12 19:16:56 -04:00
|
|
|
= f.label :title, class: 'col-form-label col-sm-2'
|
2015-09-03 08:50:23 -04:00
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :title, class: "form-control", required: true
|
2018-04-12 16:11:22 -04:00
|
|
|
.form-group.row
|
2018-04-12 19:16:56 -04:00
|
|
|
= f.label :description, class: 'col-form-label col-sm-2'
|
2016-02-17 08:52:12 -05:00
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :description, class: "form-control js-quick-submit"
|
2018-04-12 16:11:22 -04:00
|
|
|
.form-group.row
|
2018-06-16 00:51:09 -04:00
|
|
|
= f.label :color, _("Background color"), class: 'col-form-label col-sm-2'
|
2015-09-03 08:50:23 -04:00
|
|
|
.col-sm-10
|
|
|
|
.input-group
|
2018-04-12 16:32:55 -04:00
|
|
|
.input-group-prepend
|
|
|
|
.input-group-text.label-color-preview
|
2016-09-28 13:07:30 -04:00
|
|
|
= f.text_field :color, class: "form-control"
|
2018-04-11 14:26:37 -04:00
|
|
|
.form-text.text-muted
|
2018-06-16 00:51:09 -04:00
|
|
|
= _('Choose any color.')
|
2015-09-03 08:50:23 -04:00
|
|
|
%br
|
2018-06-16 00:51:09 -04:00
|
|
|
= _("Or you can choose one of the suggested colors below")
|
2015-09-03 08:50:23 -04:00
|
|
|
|
|
|
|
.suggest-colors
|
|
|
|
- suggested_colors.each do |color|
|
|
|
|
= link_to '#', style: "background-color: #{color}", data: { color: color } do
|
|
|
|
|
|
|
|
|
|
|
|
.form-actions
|
2018-09-18 05:58:22 -04:00
|
|
|
= f.submit _('Save'), class: 'btn btn-success js-save-button'
|
2018-06-16 00:51:09 -04:00
|
|
|
= link_to _("Cancel"), admin_labels_path, class: 'btn btn-cancel'
|