18F/micropurchase

View on GitHub
app/views/admin/users/_bid_history.html.erb

Summary

Maintainability
Test Coverage
<h2>Bid History</h2>

<table class="striped-table" id="bid-history">
  <thead>
    <tr>
      <th scope="col">Auction</th>
      <th scope="col">Status</th>
      <th scope="col">Skills</th>
      <th scope="col">User Bids</th>
      <th scope="col">User Won?</th>
      <th scope="col">Accepted?</th>
    </tr>
  </thead>
  <tbody>
    <% view_model.user_auctions.each do |auction| %>
      <tr>
        <td><%= link_to auction.title, admin_auction_path(auction.id) %></td>
        <td><%= auction.bidding_status %></td>
        <td><%= auction.skills %></td>
        <td><%= auction.user_bid_count %></td>
        <td><%= auction.user_won_label %></td>
        <td><%= auction.accepted_label %></td>
    <% end %>
  </tbody>
</table>