{% extends "testapp/base.html" %} {% block template_name %}testapp/nested_task_list.html{% endblock %} {% block content %}

Supporting information

A task list within the application's task list. Its sections are keyed under this page's own prefix in the same journey record, so the application's row for it reads these rows' status, and its submit only returns you there.

You have completed {{ task_list.completed }} of {{ task_list.count }} section{{ task_list.count|pluralize }}.

{% if task_list.is_complete %}
{% csrf_token %}
{% else %}

Back to your application

{% endif %}
{% endblock %}