Skip to content

Instantly share code, notes, and snippets.

@alanmaciel
Created February 26, 2018 04:09
Show Gist options
  • Select an option

  • Save alanmaciel/fcdbcb5a9b15081d4f53a030273e817a to your computer and use it in GitHub Desktop.

Select an option

Save alanmaciel/fcdbcb5a9b15081d4f53a030273e817a to your computer and use it in GitHub Desktop.
<% if object.errors.any? %>
<section id="errors">
<header>
<h2>
Oops! The <%= object.class.name.humanize.downcase %> could not be saved.
</h2>
<h3>
Please correct the following <%= pluralize(object.errors.count, "error") %>:
</h3>
</header>
<ul>
<% object.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</section>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment