10 lines
292 B
Text
10 lines
292 B
Text
|
- if object.errors.any?
|
||
|
.panel.panel-danger.form-errors
|
||
|
.panel-heading
|
||
|
= pluralize(object.errors.count, "error")
|
||
|
prohibited this #{object.class.name.downcase} from being saved:
|
||
|
.panel-body
|
||
|
%ul
|
||
|
- object.errors.full_messages.each do |msg|
|
||
|
%li= msg
|