2010-04-13 17:28:13 -04:00
|
|
|
module DeviseHelper
|
2011-03-06 08:25:09 -05:00
|
|
|
# A simple way to show error messages for the current devise resource. If you need
|
|
|
|
# to customize this method, you can either overwrite it in your application helpers or
|
|
|
|
# copy the views to your application.
|
|
|
|
#
|
|
|
|
# This method is intended to stay simple and it is unlikely that we are going to change
|
|
|
|
# it to add more behavior or options.
|
2010-04-13 17:28:13 -04:00
|
|
|
def devise_error_messages!
|
|
|
|
return "" if resource.errors.empty?
|
|
|
|
|
|
|
|
messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join
|
2010-10-04 03:13:29 -04:00
|
|
|
sentence = I18n.t("errors.messages.not_saved",
|
|
|
|
:count => resource.errors.count,
|
2011-06-27 14:31:03 -04:00
|
|
|
:resource => resource.class.model_name.human.downcase)
|
2010-04-13 17:28:13 -04:00
|
|
|
|
|
|
|
html = <<-HTML
|
|
|
|
<div id="error_explanation">
|
|
|
|
<h2>#{sentence}</h2>
|
|
|
|
<ul>#{messages}</ul>
|
|
|
|
</div>
|
|
|
|
HTML
|
|
|
|
|
|
|
|
html.html_safe
|
|
|
|
end
|
2010-10-04 03:13:29 -04:00
|
|
|
end
|