Skip to content

Instantly share code, notes, and snippets.

@juarezpaf
Created March 18, 2012 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juarezpaf/2081192 to your computer and use it in GitHub Desktop.
Save juarezpaf/2081192 to your computer and use it in GitHub Desktop.
Rails scaffold error
<% if @company.errors.any? %>
<div class="alert alert-error">
<a class="close" data-dismiss="alert">&times;</a>
<h2><%= pluralize(@company.errors.count, "error") %> prohibited this company from being saved:</h2>
<ul>
<% @company.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment