expertiza/expertiza

View on GitHub
app/views/sign_up_sheet/_waitlisted_choosers.html.erb

Summary

Maintainability
Test Coverage
<% found_in_slots = false %>
<% for slot in @slots_waitlisted %>
  <% if slot.topic_id.to_s == topic.id.to_s %>
    <td align="center"><%= slot.count.to_i %></td>
    <% found_in_slots = true %>
  <% end %>
<% end %>
<% if !found_in_slots %>
  <td align="center">0</td>
<% end %>