2021-06-28 16:32:25 +02:00
|
|
|
<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>
|
|
|
|
|
2021-10-07 17:26:45 +02:00
|
|
|
<li>
|
|
|
|
<strong>Type:</strong>
|
|
|
|
<%= @clothes.type %>
|
|
|
|
</li>
|
2021-07-01 13:08:43 +02:00
|
|
|
|
2021-06-28 16:32:25 +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>
|