left4me/rails/app/views/batches/_form.html.erb
mwiegand 5ab99c7779
wip
2022-11-27 17:32:21 +01:00

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 %>