{% with person = people['broadcaster'] %} {% if person %}
Broadcaster
{% include 'person.html' %}

{% endif %} {% endwith %} {% if broadcaster %}
{% endif %}
Users watching ({{ len(people['watching']) }})
{% for person in people['watching'] %}
{% include 'person.html' %}
{% endfor %}

Users not watching ({{ len(people['not_watching']) }})
{% for person in people['not_watching'] %}
{% include 'person.html' %}
{% endfor %}

{% if broadcaster %}
Banned ({{ len(people['banned']) }})
{% for person in people['banned'] %}
{% include 'person.html' %}
{% endfor %}
{% endif %}