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

14 lines
263 B
Text

<p style="color: green"><%= notice %></p>
<h1>Batches</h1>
<div id="batches">
<% @batches.each do |batch| %>
<%= render batch %>
<p>
<%= link_to "Show this batch", batch %>
</p>
<% end %>
</div>
<%= link_to "New batch", new_batch_path %>