Current section

Files

Jump to
phoenix_slime priv templates phx.gen.html show.html.eex
Raw

priv/templates/phx.gen.html/show.html.eex

h2 Show <%= schema.human_singular %>
ul
<%= for {k, _} <- schema.attrs do %> li
strong <%= Phoenix.Naming.humanize(Atom.to_string(k)) %>:&nbsp;
= @<%= schema.singular %>.<%= k %>
<% end %>
= link "Edit", to: Routes.<%= schema.route_helper %>_path(@conn, :edit, @<%= schema.singular %>)
| &nbsp;
= link "Back", to: Routes.<%= schema.route_helper %>_path(@conn, :index)