34 lines
801 B
HTML
34 lines
801 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<head>
|
|
<title>Redeems Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tbody>
|
|
<td> Number of drinks: </td>
|
|
<td> {{ number_of_drinks }} </td>
|
|
</tbody>
|
|
</table>
|
|
{% if queue %}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>time</th>
|
|
<th>redeem</th>
|
|
<th>redeemer</th>
|
|
</tr>
|
|
</thead>
|
|
{% for row in queue %}
|
|
<tbody>
|
|
<td>{{ row[0].replace(tzinfo=utc_timezone).astimezone().strftime("%H:%M") }}</td>
|
|
<td>{{ row[1] }}</td>
|
|
<td>{{ row[2] }}</td>
|
|
</tbody>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|