You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
371 B
17 lines
371 B
<% if object.errors.any? %>
|
|
<section class="errors">
|
|
<h2>
|
|
Oops! Your form could not be saved.
|
|
</h2>
|
|
<h3>
|
|
Please correct the following
|
|
<%= pluralize(object.errors.size, "error") %>:
|
|
</h3>
|
|
<ul>
|
|
<% object.errors.full_messages.each do |message| %>
|
|
<li><%= message %></li>
|
|
<% end %>
|
|
</ul>
|
|
</section>
|
|
<% end %>
|