Advertisement
Guest User

Untitled

a guest
May 24th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <tbody>
  2. {% for product in products %}
  3. <tr>
  4. <td>{{ product.id|replace("_", ' ')|lower()|title() }}</td>
  5.  
  6. {% for buy in product.buy_price %}
  7. <td>{{ buy.pricePerUnit }}</td>
  8. {% for sell in product.sell_price %}
  9. <td>{{ sell.pricePerUnit }}</td>
  10.  
  11. <td>{{ product.buy_volume}}</td>
  12. <td>{{ product.sell_volume}}</td>
  13. {% set margin = buy.pricePerUnit - sell.pricePerUnit%} {% set marginPer
  14. = margin/buy.pricePerUnit * 100%}
  15. <td
  16. aria-label="{{ marginPer|round(1, 'floor') }} % "
  17. data-balloon-pos="right"
  18. >
  19. {{ margin|round(1, 'floor')}}
  20. </td>
  21. {% endfor %}{% endfor %}
  22. <td>
  23. <a
  24. href="#"
  25. class="read_more"
  26. aria-label="Coming Soon."
  27. data-balloon-pos="right "
  28. >Read more</a
  29. >
  30. </td>
  31. </tr>
  32. {% endfor %}
  33. </tbody>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement