list.html 825 B

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