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

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