{% extends "tickets/base.html" %} {% block title %}{{ list_title }} Lists{% endblock %} {% block content %}

Lists

{{ ticket_count }} tickets in {{ list_count }} list{{ list_count|pluralize }}

{% regroup lists by group as section_list %} {% for group in section_list %}

Group: {{ group.grouper }}

{% endfor %}
{% if user.is_staff %} Create new list {% else %} If you were staff, you could create a new list {% endif %}
{% endblock %}