Sha256: ab2233500711171d64849c0d247fa41518382661e4470f1fbe0ea92f3bd2536f

Contents?: true

Size: 731 Bytes

Versions: 4

Compression:

Stored size: 731 Bytes

Contents

<% collection.each do |resource| %>
    <tr id="<%= dom_id(resource) %>">
      <td><%= resource.name %></td>
      <td><%= resource.item_type %></td>
      <td> <%= image_tag resource.image.icon32 %></td>
      <td><%= resource.rarity %></td>
      <td><%= resource.cost %></td>
      <td><%= resource.user.name %></td>
      <td><%= resource.description %></td>
      <td class="text-center">
        <% if current_user and current_user.admin? %>
            <%= link_to 'Show',  resource %>
            <%= link_to 'Edit', edit_gamification_item_path(resource) %>
            <%= link_to 'Destroy', resource, method: :delete, data: { confirm: 'Are you sure?' } %>
        <% end %>
      </td>
      </td>
    </tr>
<% end %>


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
go_gamification-0.0.20 app/views/gamification/items/_collection.html.erb
go_gamification-0.0.19 app/views/gamification/items/_collection.html.erb
go_gamification-0.0.18 app/views/gamification/items/_collection.html.erb
go_gamification-0.0.17 app/views/gamification/items/_collection.html.erb