base.html 366 B

123456789101112131415
  1. <html>
  2. <head>
  3. <title>To-Do lists</title>
  4. </head>
  5. <body>
  6. <h1>{% block header_text %}{% endblock %}</h1>
  7. <form method="POST" action="{% block form_action %}{% endblock %}">
  8. <input name="item_text" id="id_new_item" placeholder="Enter a to-do item" />
  9. {% csrf_token %}
  10. </form>
  11. {% block table %}
  12. {% endblock %}
  13. </body>
  14. </html>