Sha256: 117f7d2f6915efc0c8875058d83c2ffc3af39476b31add04bc1f624e006e4c90
Contents?: true
Size: 837 Bytes
Versions: 10
Compression:
Stored size: 837 Bytes
Contents
module DeviseHelper # 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. def devise_error_messages! return "" if resource.errors.empty? messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join sentence = I18n.t("errors.messages.not_saved", :count => resource.errors.count, :resource => resource_name) html = <<-HTML <div id="error_explanation"> <h2>#{sentence}</h2> <ul>#{messages}</ul> </div> HTML html.html_safe end end
Version data entries
10 entries across 10 versions & 3 rubygems