crowdAI/crowdai

View on GitHub
app/views/participant_challenges/_participant_challenges.html.erb

Summary

Maintainability
Test Coverage
<% if @participant_challenges.blank? %>
  <li>
    <div class="details">
      <h5>No participants yet...</h5>
    </div>
  </li>
<% else %>
  <%= concept(ParticipantChallenge::Cell::ListDetail,
              collection: @participant_challenges,
              current_participant: current_participant) %>
<% end %>