summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
blob: 7bf8aa00cb7800e24d5ebc88f801bc1cf27452d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<h1>Listing tournaments</h1>

<table>
  <thead>
    <tr>
      <th>Game</th>
      <th>Status</th>
      <th>Name</th>
      <th>Min players per team</th>
      <th>Max players per team</th>
      <th>Min teams per match</th>
      <th>Max teams per match</th>
      <th>Scoring method</th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
    <% @tournaments.each do |tournament| %>
      <tr>
        <td><%= tournament.game %></td>
        <td><%= tournament.status %></td>
        <td><%= tournament.name %></td>
        <td><%= tournament.min_players_per_team %></td>
        <td><%= tournament.max_players_per_team %></td>
        <td><%= tournament.min_teams_per_match %></td>
        <td><%= tournament.max_teams_per_match %></td>
        <td><%= tournament.scoring_method %></td>
        <td><%= link_to 'Show', tournament %></td>
        <td><%= link_to 'Edit', edit_tournament_path(tournament) %></td>
        <td><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Tournament', new_tournament_path %>