about summary refs log tree commit diff
path: root/app/views/players/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/players/index.html.erb')
-rw-r--r--app/views/players/index.html.erb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/views/players/index.html.erb b/app/views/players/index.html.erb
new file mode 100644
index 0000000..eac7710
--- /dev/null
+++ b/app/views/players/index.html.erb
@@ -0,0 +1,14 @@
+<p style="color: green"><%= notice %></p>
+
+<h1>Players</h1>
+
+<div id="players">
+  <% @players.each do |player| %>
+    <%= render player %>
+    <p>
+      <%= link_to "Show this player", player %>
+    </p>
+  <% end %>
+</div>
+
+<%= link_to "New player", new_player_path %>