Skip to content

Instantly share code, notes, and snippets.

@RudolfHattenkofer
Created October 7, 2013 08:07
Show Gist options
  • Save RudolfHattenkofer/6864162 to your computer and use it in GitHub Desktop.
Save RudolfHattenkofer/6864162 to your computer and use it in GitHub Desktop.
Display Resourceable errors
<% if @category.errors.any? %>
<div class="alert alert-block alert-error">
<h4><%= pluralize( @category.errors.count, 'error' ) %> prohibited this Category from being saved:</h4>
<ul>
<% @category.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