Sha256: d98a57fd249dae84aa556bff43415454b688b31b1015a48dca54c4e02412982c

Contents?: true

Size: 803 Bytes

Versions: 1

Compression:

Stored size: 803 Bytes

Contents

<div class="tab-pane active" id="contributions">
  <% if @trophies.count > 0 %>
    <table>
      <% @trophies.each do |t| %>
        <tr id="trophyrow_<%= t.id %>">
          <td>
            <%= link_to t do %>
              <%= image_tag t.indexing_service.thumbnail_path, { width: 90 } %>
            <% end %>
          </td>
          <td>
            <%= link_to t.to_s, t %>
            <% if current_user == @user %>
              <%= display_trophy_link current_user, t.id, class: 'glyphicon glyphicon-star', data: {removerow: true} do %>
                <i class='trophy-on glyphicon glyphicon-remove'></i>
              <% end %>
            <% end %>
          </td>
        </tr>
      <% end %>
    </table>
  <% else %>
    <%= @user.name %> has no highlighted works.
  <% end %>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sufia-7.0.0.beta3 app/views/users/_contributions.html.erb