pinrails/app/views/machines/index.html.erb

15 lines
298 B
Plaintext

<% 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 %>