list.html 929 B

12345678910111213141516171819202122232425262728293031323334353637
  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="10">
  7. <title>Today's to-do List</title>
  8. <style>
  9. body {
  10. background-color: transparent;
  11. color: #ffd39a;
  12. width: 400px;
  13. }
  14. </style>
  15. <script>
  16. function refreshPage() {
  17. window.location.reload();
  18. }
  19. setTimeout(refreshPage, 30 * 1000);
  20. </script>
  21. </head>
  22. <body>
  23. {% if items %}
  24. <h4>Today's to-do List</h4>
  25. <ul>
  26. {% for item in items %}
  27. <li style="text-decoration: {{ 'line-through' if item.crossed == 'yes' else 'none' }};">
  28. {{ item.name }}
  29. </li>
  30. {% endfor %}
  31. </ul>
  32. {% else %}
  33. <h4>Nothing on the to-do list yet</h4>
  34. {% endif %}
  35. </body>
  36. </html>