Sha256: 724db55040a5f9f24d4027114c221200fe9b83d5217ec2ece087dc37fe5eceb5
Contents?: true
Size: 840 Bytes
Versions: 15
Compression:
Stored size: 840 Bytes
Contents
<div class="tab-pane show active" id="contributions"> <% if presenter.trophies.count > 0 %> <table> <% presenter.trophies.each do |t| %> <tr id="trophyrow_<%= t.id %>" class='highlighted-works'> <td> <%= link_to [main_app, t] do %> <%= image_tag t.thumbnail_path, width: 90 %> <% end %> </td> <td> <%= link_to t.to_s, [main_app, t] %> <% if presenter.current_user? %> <%= display_trophy_link current_user, t.id, class: 'fa fa-star', data: { removerow: true } do %> <span class='trophy-on fa fa-times'></span> <% end %> <% end %> </td> </tr> <% end %> </table> <% else %> <%= presenter.name %> has no highlighted works. <% end %> </div>
Version data entries
15 entries across 15 versions & 1 rubygems