Guest User

Untitled

a guest
Mar 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <table class="table">
  2. <thead>
  3. <th scope="col">Price of buy orders(BTC)</th>
  4. <th scope="col">Amount of buy orders(<%=@currency_id%>)</th>
  5. <th scope="col">Date of buy orders</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <%if @buy_orders.present?%>
  10. <%@buy_orders.each do |buy|%>
  11. <tr>
  12. <td class="table-default"><%=buy.price%></td>
  13.  
  14. <td class="table-default"><%=buy.amount%>
  15. <div style="background: blue;"></div>
  16. </td>
  17. <td class="table-default"><%=buy.created_at%></td>
  18. </tr>
  19. <%end%>
  20. <%end%>
  21. </tbody>
  22. </table>
Add Comment
Please, Sign In to add comment