Module: Books::ErrorHelper
- Defined in:
- app/helpers/books/error_helper.rb
Instance Method Summary collapse
Instance Method Details
#error_msg(mo) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'app/helpers/books/error_helper.rb', line 3 def error_msg(mo) if mo.errors.any? full_msg="" mo.errors..each do |msg| full_msg=full_msg+"<li>"+msg+"</li>" end #<h2>"+pluralize(mo.errors.count, t(:num_error))+t(:op_error)+"</h2>pluralize is useless in Chinese raw "<div id=\"error_explanation\"> <h2>"+mo.errors.count.to_s+t(:num_error)+t(:op_error)+"</h2> <ul>"+full_msg+"</ul></div>" end end |