steam.html 930 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. {% include 'hackathon/base.html' %}
  5. <h1 class="text-center"> Steam API </h1>
  6. <div class="col-lg-12">
  7. <div class="table-responsive">
  8. <table class="table table-bordered table-hover table-striped tablesorter">
  9. <thead>
  10. <tr>
  11. <th class="header"> Game ID <i class="icon-sort"></i></th>
  12. <th class="header"> Game Name <i class="icon-sort"></i></th>
  13. <th class="header"> Minutes Played <i class="icon-sort"></i></th>
  14. </thead>
  15. <tbody>
  16. {% for game in game %}
  17. <tr>
  18. <td>{{ game.appid }}</td>
  19. <td>{{ game.name }}</td>
  20. <td>{{ game.playtime_forever }}</td>
  21. </tr>
  22. {% endfor %}
  23. </tbody>
  24. </table>
  25. </div>
  26. </div>
  27. </body>
  28. </html>