Skip to content

Instantly share code, notes, and snippets.

@maier-stefan
Created September 19, 2014 17:57
Show Gist options
  • Save maier-stefan/b5326de8f4efb5e64e0a to your computer and use it in GitHub Desktop.
Save maier-stefan/b5326de8f4efb5e64e0a to your computer and use it in GitHub Desktop.
Error Messages
<% if @customer.errors.any? %>
<div class="warning">
<h2><%= @customer.errors.count %> <%= t :error_prohibited_save %></h2>
<ul>
<% @customer.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment