{% extends "core/base.html" %} {% block title_text %}Your to-do list{% endblock title_text %} {% block header_text %}Your to-do list{% endblock header_text %} {% block form_action %}/apps/dashboard/{{ list.id }}/add-item{% endblock form_action %} {% block table %} {% for item in list.item_set.all %} {% endfor %}
{{ forloop.counter }}. {{ item.text }}
{% endblock table %}