summaryrefslogtreecommitdiff
path: root/app/views/remote_usernames/index.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-04 21:06:05 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-04 21:06:05 -0400
commitb43bab15521c7c511ab7012bd137daa0e85bb95b (patch)
tree743853b82557941de7f18951f5d284dc6b7f7d8f /app/views/remote_usernames/index.html.erb
parente61fe55c0a745d5ab80acdcccec26e2a2d379be1 (diff)
run generate.sh
Diffstat (limited to 'app/views/remote_usernames/index.html.erb')
-rw-r--r--app/views/remote_usernames/index.html.erb31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/views/remote_usernames/index.html.erb b/app/views/remote_usernames/index.html.erb
deleted file mode 100644
index 14f5876..0000000
--- a/app/views/remote_usernames/index.html.erb
+++ /dev/null
@@ -1,31 +0,0 @@
-<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 %>