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