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

18 lines
399 B
Plaintext

<% if not notice.nil? %><p style="color: green"><%= notice %></p>
<% end %>
<h1>Pins</h1>
<div id="machines">
<% @machines.each do |machine| %>
<p id="<%= dom_id machine %>">
<%= link_to machine.name, machine %>
<small><%= machine.edition %></small>
</p>
<% end %>
</div>
<p><%= pluralize(@machines.count, 'total pin') %></p>
<%= link_to "Add a pin", new_machine_path %>