pokemon-couture/lib/pokemon_couture_web/templates/clothes/show.html.eex

32 lines
457 B
Elixir
Raw Permalink Normal View History

<h1>Show Clothes</h1>
<ul>
<li>
<strong>Name:</strong>
<%= @clothes.name %>
</li>
2021-07-01 13:08:43 +02:00
<li>
<strong>Color:</strong>
<%= @clothes.color %>
</li>
<li>
<strong>Type:</strong>
<%= @clothes.type %>
</li>
2021-07-01 13:08:43 +02:00
<li>
<strong>Location:</strong>
<%= @clothes.location %>
</li>
<li>
<strong>Game:</strong>
<%= @clothes.game %>
</li>
</ul>
<span><%= link "Back", to: Routes.clothes_path(@conn, :index) %></span>