summaryrefslogtreecommitdiff
path: root/app/views/remote_usernames/index.html.erb
blob: 14f5876da8b7c11950f107505cd3211c51d3c765 (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
<h1>Listing remote_usernames</h1>

<table>
  <thead>
    <tr>
      <th>Game</th>
      <th>User</th>
      <th>User name</th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
    <% @remote_usernames.each do |remote_username| %>
      <tr>
        <td><%= remote_username.game %></td>
        <td><%= remote_username.user %></td>
        <td><%= remote_username.user_name %></td>
        <td><%= link_to 'Show', remote_username %></td>
        <td><%= link_to 'Edit', edit_remote_username_path(remote_username) %></td>
        <td><%= link_to 'Destroy', remote_username, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Remote username', new_remote_username_path %>