{% extends 'base.html' %} {% block header_text %}Your To-Do list{% endblock %} {% block form_action %}{% url 'view_list' list.id %}{% endblock %} {% block table %} {% for item in list.item_set.all %} {% endfor %}
{{ forloop.counter }}: {{ item.text }}
{% if list.owner %}

List owner: {{ list.owner.email }}

{% endif %} {% endblock %} {% block extra_content %}

Shared with

Share this list:

{% csrf_token %}
{% endblock %}