rosa-build/config/initializers/render_errors_in_forms.rb

7 lines
254 B
Ruby
Raw Normal View History

2011-03-31 00:52:34 +01:00
ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
if html_tag =~ /<label/
%|<div class="fieldWithErrors">#{html_tag} <span class="error">#{[instance.error_message].join(', ')}</span></div>|.html_safe
else
html_tag
end
end