{% extends "base.html" %} {% load url from future %} {% block title %}{{ list_title }} to-do items{% endblock %} {% block content %} {# Only admins can delete lists. #} {% ifequal can_del 1 %} {% if list_killed %}

{{ list.name }} is gone.

Return to lists {% else %}

Delete entire list: {{ list.name }} ?

Category tally:

... all of which will be irretrievably blown away. Are you sure you want to do that?

{% csrf_token %}

Return to list: {{ list.name }} {% endif %} {% else %}

Sorry, you don't have permission to delete lists. Please contact your group administrator.

{% endifequal %} {% endblock %}