votes.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. font-weight: bold;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. {% if votes %}
  22. <table>
  23. <thead>
  24. <tr>
  25. <th></th>
  26. <th></th>
  27. <th></th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. {% for vote in votes %}
  32. <tr>
  33. <td>{{ vote[2] }}</td>
  34. {% if vote[1] == 1 %}
  35. <td>{{ vote[1] }} vote</td>
  36. {% else %}
  37. <td>{{ vote[1] }} votes</td>
  38. {% endif %}
  39. </tr>
  40. {% endfor %}
  41. </tbody>
  42. </table>
  43. {% endif %}
  44. </body>
  45. </html>