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 %}