list.html 525 B

1234567891011121314151617
  1. <html>
  2. <head>
  3. <title>To-Do lists</title>
  4. </head>
  5. <body>
  6. <h1>Your To-Do list</h1>
  7. <form method="POST" action="/lists/{{ list.id }}/add_item">
  8. <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
  9. {% csrf_token %}
  10. </form>
  11. <table id="id_list_table">
  12. {% for item in list.item_set.all %}
  13. <tr><td>{{forloop.counter}}: {{ item.text }}</td></tr>
  14. {% endfor %}
  15. </table>
  16. </body>
  17. </html>