cat-bookmarker/deps/phoenix/priv/templates/phx.gen.live/show.html.heex

27 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-03-10 18:52:04 +00:00
<h1>Show <%= schema.human_singular %></h1>
<%%= if @live_action in [:edit] do %>
<.modal return_to={Routes.<%= schema.route_helper %>_show_path(@socket, :show, @<%= schema.singular %>)}>
<.live_component
module={<%= inspect context.web_module %>.<%= inspect Module.concat(schema.web_namespace, schema.alias) %>Live.FormComponent}
id={@<%= schema.singular %>.id}
title={@page_title}
action={@live_action}
<%= schema.singular %>={@<%= schema.singular %>}
return_to={Routes.<%= schema.route_helper %>_show_path(@socket, :show, @<%= schema.singular %>)}
/>
</.modal>
<%% end %>
<ul>
<%= for {k, _} <- schema.attrs do %>
<li>
<strong><%= Phoenix.Naming.humanize(Atom.to_string(k)) %>:</strong>
<%%= @<%= schema.singular %>.<%= k %> %>
</li>
<% end %>
</ul>
<span><%%= live_patch "Edit", to: Routes.<%= schema.route_helper %>_show_path(@socket, :edit, @<%= schema.singular %>), class: "button" %></span> |
<span><%%= live_redirect "Back", to: Routes.<%= schema.route_helper %>_index_path(@socket, :index) %></span>