about summary refs log tree commit diff
path: root/app/views/machines/index.html.erb
blob: 2c9952454c2d866667ebbd7c6b6b4bddb9c1cdcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<p style="color: green"><%= notice %></p>

<h1>Pins</h1>

<div id="machines">
  <% @machines.each do |machine| %>
    <%= render machine %>
  <% end %>
</div>

<%= link_to "New machine", new_machine_path %>