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

<h1><%= @machine.name %></h1>

<%= render "form", machine: @machine %>

<div>
  <%= link_to "Delete #{@machine.name} ❌", @machine, data: {
    turbo_method: :delete,
    turbo_confirm: "Are you sure you want to remove #{@machine.name}?" } %>
</div>