about summary refs log tree commit diff
path: root/app/views/machines/index.html.erb
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2022-02-01 09:38:44 -0500
committerBen Harris <ben@tilde.team>2022-02-01 09:38:44 -0500
commit9150b575075db8a2de75ab476c9c7801d2352242 (patch)
treee336d6242e6f7f9a10f4b040947e0a16414cb73b /app/views/machines/index.html.erb
parentc00902c956dd336fa1bdc74603312c1c95ac9d6b (diff)
tidy up a bit
Diffstat (limited to 'app/views/machines/index.html.erb')
-rw-r--r--app/views/machines/index.html.erb8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/views/machines/index.html.erb b/app/views/machines/index.html.erb
index a20a543..bde59c2 100644
--- a/app/views/machines/index.html.erb
+++ b/app/views/machines/index.html.erb
@@ -1,10 +1,14 @@
-<% if not notice.nil? %><p style="color: green"><%= notice %></p><% end %>
+<% if not notice.nil? %><p style="color: green"><%= notice %></p>
+<% end %>
 
 <h1>Pins</h1>
 
 <div id="machines">
   <% @machines.each do |machine| %>
-    <%= render machine %>
+    <p id="<%= dom_id machine %>">
+      <%= link_to machine.name, machine %>
+      <small><%= machine.edition %></small>
+    </p>
   <% end %>
 </div>