Sha256: 6ecceed38d9ee83f92d55d2ea1204f0b825c652c8c871a2d15a015d0da0aa025
Contents?: true
Size: 869 Bytes
Versions: 4
Compression:
Stored size: 869 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Gamification Inventories</h1> <table> <thead> <tr> <th>User</th> <th>Item</th> <th>Equipped</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @gamification_inventories.each do |gamification_inventory| %> <tr> <td><%= gamification_inventory.User %></td> <td><%= gamification_inventory.Item %></td> <td><%= gamification_inventory.equipped %></td> <td><%= link_to 'Show', gamification_inventory %></td> <td><%= link_to 'Edit', edit_gamification_inventory_path(gamification_inventory) %></td> <td><%= link_to 'Destroy', gamification_inventory, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Gamification Inventory', new_gamification_inventory_path %>
Version data entries
4 entries across 4 versions & 1 rubygems