7a2370f740
- Some views had a "Close" button. We've removed this, because we don't want users accidentally hiding the validation errors and not knowing what needs to be fixed. - Some views used `li`, some used `p`, some used `span`. We've standardized on `li`. - Some views only showed the first error. We've standardized on showing all of them. - Some views added an `#error_explanation` div, which we've made standard.
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
= form_for [:admin, @label], html: { class: 'form-horizontal label-form js-requires-input' } do |f|
|
|
= form_errors(@label)
|
|
|
|
.form-group
|
|
= f.label :title, class: 'control-label'
|
|
.col-sm-10
|
|
= f.text_field :title, class: "form-control", required: true
|
|
.form-group
|
|
= f.label :description, class: 'control-label'
|
|
.col-sm-10
|
|
= f.text_field :description, class: "form-control js-quick-submit"
|
|
.form-group
|
|
= f.label :color, "Background color", class: 'control-label'
|
|
.col-sm-10
|
|
.input-group
|
|
.input-group-addon.label-color-preview
|
|
= f.color_field :color, class: "form-control"
|
|
.help-block
|
|
Choose any color.
|
|
%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
|
|
= f.submit 'Save', class: 'btn btn-save js-save-button'
|
|
= link_to "Cancel", admin_labels_path, class: 'btn btn-cancel'
|
|
|
|
:javascript
|
|
new Labels();
|