17 lines
404 B
Text
17 lines
404 B
Text
<%= form_with(model: batch) do |form| %>
|
|
<% if batch.errors.any? %>
|
|
<div style="color: red">
|
|
<h2><%= pluralize(batch.errors.count, "error") %> prohibited this batch from being saved:</h2>
|
|
|
|
<ul>
|
|
<% batch.errors.each do |error| %>
|
|
<li><%= error.full_message %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div>
|
|
<%= form.submit %>
|
|
</div>
|
|
<% end %>
|