blob: e313f7e4a698d480dd661dfec7baf50926c3e8b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<h1 class="text-xl">Inventory</h1>
<table class="table-auto">
<thead>
<tr>
<th class="table-header-padded">Amount</th>
<th class="table-header-padded">Item</th>
<th class="table-header-padded">Equip</th>
<th class="table-header-padded">Use</th>
<th class="table-header-padded">Destroy</th>
</tr>
</thead>
<tbody>
<% @character_items.ordered_by_item_name.each do |ci| %>
<tr>
<td class="table-cell-padded text-right"><%= ci.quantity %></td>
<td class="table-cell-padded"><%= ci.item.name %></td>
<td class="table-cell-padded">
<% if ci.item.equip_slot %>
<%= link_to "[Equip]", "#" %>
<% end %>
</td>
<td class="table-cell-padded">
<% if ci.item.usable? %>
<%= link_to "[Use]", "#" %>
<% end %>
</td>
<td class="table-cell-padded">
<%= link_to "[Destroy]", "#" %>
<%= link_to "[Destroy All]", "#" %>
</td>
</tr>
<% end %>
</tbody>
</table>
|