Skip to content

Instantly share code, notes, and snippets.

@seyhunak
Created September 16, 2013 10:50
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save seyhunak/6579155 to your computer and use it in GitHub Desktop.
Save seyhunak/6579155 to your computer and use it in GitHub Desktop.
Devise Error Messages Twitter Bootstrap style
# /app/helpers/devise_helper.rb
module DeviseHelper
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 class="alert alert-error alert-block">
<button type="button" class="close" data-dismiss="alert">x</button>
<h4>#{sentence}</h4>
#{messages}
</div>
HTML
html.html_safe
end
end
@nihsmik
Copy link

nihsmik commented Jul 15, 2015

alert-error becomes alert-danger :)
And alert-block is not needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment