about summary refs log blame commit diff
path: root/app/views/machines/index.html.erb
blob: b5e2c85ed945f4ad69fccf8f529c55b23edf1fc0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 %>