market.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <section id="market_top" class="d-flex align-items-center">
  4. <div class="container" data-aos="zoom-out" data-aos-delay="100">
  5. <h1>Welcome to <span>artFi</span></h1>
  6. <h2> You can bid anything you like here! </h2>
  7. <h2> If you like it. Just Click It! </h2>
  8. </div>
  9. </section>
  10. <br>
  11. <div class="container">
  12. <div class="row row-cols-4">
  13. {% for art in listings %}
  14. <div class="card col-md-3 grid-item shadow p-3 mb-5 bg-white rounded">
  15. <form method="POST">
  16. <button name="focus_but" type="submit" class="btn btn-link" value="{{art[11]}}"><img class="market_each_bid_image_size" src="static/repository/{{art[5]}}"></button>
  17. </form>
  18. <div class="row" id="market_item_name_left">
  19. <b>{{art[0]}}</b>
  20. </div>
  21. <div class="row">
  22. <p id="market_item_text_left">Last Bid:</p>
  23. <p id="market_item_text_right"> {{art[12]}}<span class="price-span"> USD</span></p>
  24. </div>
  25. <div class="row">
  26. <p id="market_item_text_left">Creator:</p>
  27. <p id="market_item_text_right">{{art[3]}}
  28. {% if art[4] %}
  29. <img src="static/uploads/{{art[4]}}" height=25 width=25>
  30. {% else %}
  31. <img src="static/templates/defaultprofileimg.png" height=25 width=25>
  32. {% endif %}
  33. </p>
  34. </div>
  35. </div>
  36. {% endfor %}
  37. </div>
  38. </div>
  39. {% endblock %}