Sha256: 4155a73832cb42383254174e29844b84159ae1d5056b8dd5b9bf44a18275b3ca

Contents?: true

Size: 864 Bytes

Versions: 76

Compression:

Stored size: 864 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.class.model_name.human.downcase)

    html = <<-HTML
    <div id="error_explanation">
      <h2>#{sentence}</h2>
      <ul>#{messages}</ul>
    </div>
    HTML

    html.html_safe
  end
end

Version data entries

76 entries across 71 versions & 9 rubygems

Version Path
devise-3.2.3 app/helpers/devise_helper.rb
devise-3.2.2 app/helpers/devise_helper.rb
devise-3.2.1 app/helpers/devise_helper.rb
devise-3.1.2 app/helpers/devise_helper.rb
devise-3.0.4 app/helpers/devise_helper.rb
devise-2.2.8 app/helpers/devise_helper.rb
devise-3.2.0 app/helpers/devise_helper.rb
loyal_devise-2.2.6 app/helpers/devise_helper.rb
devise-3.1.1 app/helpers/devise_helper.rb
devise-3.1.0 app/helpers/devise_helper.rb
devise-2.0.6 app/helpers/devise_helper.rb
devise-2.1.4 app/helpers/devise_helper.rb
devise-2.2.7 app/helpers/devise_helper.rb
devise-3.0.3 app/helpers/devise_helper.rb
devise-3.1.0.rc2 app/helpers/devise_helper.rb
loyal_devise-2.2.5 app/helpers/devise_helper.rb
devise-2.2.6 app/helpers/devise_helper.rb
devise-3.0.2 app/helpers/devise_helper.rb
devise-3.0.1 app/helpers/devise_helper.rb
devise-2.2.5 app/helpers/devise_helper.rb