pinrails/app/views/pages/teampicker.html.erb

11 lines
278 B
Plaintext
Raw Normal View History

2021-08-25 05:21:33 +00:00
<h1>teampicker</h1>
2021-08-23 04:52:23 +00:00
2021-11-22 23:17:44 +00:00
<% @groups.each.with_index do |slice, i| %>
2021-12-06 23:26:44 +00:00
<h2><%= @machines[i].name %> <small><%= @machines[i].edition %></small></h2>
2021-09-27 05:33:06 +00:00
<ol>
2021-08-23 04:52:23 +00:00
<% slice.each do |player| %>
<li><%= link_to player.name, edit_player_path(player) %></li>
<% end %>
2021-09-27 05:33:06 +00:00
</ol>
2021-08-23 04:52:23 +00:00
<% end %>