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

<h1>Pins</h1>

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

<hr>
<%= link_to "Add a pin", new_machine_path %>