1
This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
Project_Steam_Tracker/templates/fulltable.html
2021-01-12 13:26:09 +01:00

38 lines
1.7 KiB
HTML

<html>
<head>
<title>Index</title>
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
</head>
<body>
{% include "t-navbar.html" %}
<div class="container">
<div class="row row-cols-2">
<div class="col col-lg">
<table class="table table-striped">
<thead>
<tr>
<th><a href="/fulltable">App ID</a></th>
<th><a href="?sortby=name{% if reverse %}&reverse=True{% endif %}">Name</a></th>
<th><a href="?sortby=users{% if reverse %}&reverse=True{% endif %}">Users</a></th>
<th><a href="?sortby=release_date{% if reverse %}&reverse=True{% endif %}">Release date</a></th>
<th><a href="?sortby=price{% if reverse %}&reverse=True{% endif %}">Price</a></th>
</tr>
</thead>
<tbody>
{% for row in entries %}
<tr style="text-align: center;">
<td>{{ row[0] }}</td>
<td>{{ row[1] }}</td>
<td>{{ row[16] }} gebruikers</td>
<td>{{ row[2] }}</td>
<td>€ {{ row[17] }} ,-</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>