<%= @ammo_type.name %>

<%= live_redirect "Back", to: Routes.ammo_type_index_path(@socket, :index), class: "link" %> <%= live_patch "Edit", to: Routes.ammo_type_show_path(@socket, :edit, @ammo_type), class: "button" %> <%= link("Delete", to: "#", class: "link", phx_click: "delete", data: [confirm: "Are you sure you want to delete #{@ammo_type.name}?"] ) %>

<%= if @live_action in [:edit] do %> <%= live_modal CanneryWeb.AmmoTypeLive.FormComponent, id: @ammo_type.id, title: @page_title, action: @live_action, ammo_type: @ammo_type, return_to: Routes.ammo_type_show_path(@socket, :show, @ammo_type) %> <% end %>