{% 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 extra_header %} {% url "view_list" list.id as form_action %} {% include "apps/dashboard/_partials/_form.html" with form=form form_action=form_action %} {% endblock extra_header %} {% block content %}
{% for item in list.item_set.all %} {% endfor %}
{{ forloop.counter }}. {{ item.text }}
{% endblock content %} {% block scripts %} {% include "apps/dashboard/_partials/_scripts.html" %} {% endblock scripts %}