| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta http-equiv="refresh" content="5">    <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">    <title>Active votes</title>    <style>        body {            background-color: transparent;            color: white;            width: 400px;            position: absolute;                             bottom: 0; left: 0;        }    </style></head><body>    {% if votes %}        <table>            <thead>                <tr>                    <th></th>                    <th></th>                    <th></th>                </tr>            </thead>            <tbody>            {% for vote in votes %}                <tr>                    <td>{{ vote[2] }}</td>                    {% if vote[1] == 1 %}                    <td>{{ vote[1] }} vote</td>                    {% else %}                    <td>{{ vote[1] }} votes</td>                    {% endif %}                </tr>            {% endfor %}            </tbody>        </table>    {% endif %}</body></html>
 |