summaryrefslogtreecommitdiff
path: root/app/views/activities/_results.html.erb
blob: ba2abe7a25c09e9447578c553d7aca0913da3434 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div>
  <% results.each do |result| %>
    <% if result[:type] == "item" %>
      <p>You got <%= result[:quantity] %> <%= result[:item].name %>
        <% if result[:xp].any? %>
          (<%= result[:xp].map { |award| "#{award[:amount]} xp #{award[:skill].name}" }.join(", ")  %>)
        <% end %>
      </p>
    <% end %>
  <% end %>
</div>