32 lines
457 B
Elixir
32 lines
457 B
Elixir
<h1>Show Clothes</h1>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
<strong>Name:</strong>
|
|
<%= @clothes.name %>
|
|
</li>
|
|
|
|
<li>
|
|
<strong>Color:</strong>
|
|
<%= @clothes.color %>
|
|
</li>
|
|
|
|
<li>
|
|
<strong>Type:</strong>
|
|
<%= @clothes.type %>
|
|
</li>
|
|
|
|
<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>
|