Current section

Files

Jump to
phoenix priv templates phoenix.gen.html show.html.eex
Raw

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

<h2>Show <%= template_singular %></h2>
<ul>
<%= for {k, _} <- attrs do %>
<li>
<strong><%= Phoenix.Naming.humanize(Atom.to_string(k)) %>:</strong>
<%%= @<%= singular %>.<%= k %> %>
</li>
<% end %>
</ul>
<span><%%= link "Edit", to: <%= singular %>_path(@conn, :edit, @<%= singular %>) %></span>
<span><%%= link "Back", to: <%= singular %>_path(@conn, :index) %></span>