votes.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="refresh" content="5">
  7. <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
  8. <title>Active votes</title>
  9. <style>
  10. body {
  11. background-color: transparent;
  12. color: white;
  13. width: 400px;
  14. position: absolute;
  15. bottom: 0; left: 0;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. {% if votes %}
  21. <table>
  22. <thead>
  23. <tr>
  24. <th></th>
  25. <th></th>
  26. <th></th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. {% for vote in votes %}
  31. <tr>
  32. <td>{{ vote[2] }}</td>
  33. {% if vote[1] == 1 %}
  34. <td>{{ vote[1] }} vote</td>
  35. {% else %}
  36. <td>{{ vote[1] }} votes</td>
  37. {% endif %}
  38. </tr>
  39. {% endfor %}
  40. </tbody>
  41. </table>
  42. {% endif %}
  43. </body>
  44. </html>