steam.html 387 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <table>
  5. <tr><th>Game ID</th><th>Game Name</th><th>Minutes Played</th></tr>
  6. {% for game in game %}
  7. {% comment %} each game object is a dictionary with "appid", "name " and "playtime_forever" keys {% endcomment %}
  8. <tr><td>{{ game.appid }}</td><td>{{game.name}} </td><td>{{ game.playtime_forever }}</td></tr>
  9. {% endfor %}
  10. </table>
  11. </body>
  12. </html>