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

<h1>Pins</h1>

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

<p><%= pluralize(@machines.count, 'total pin') %></p>

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