{% extends "facebook/canvas" %} {% load facebook %} {% block title %}People{% endblock %} {% block body %}

There are {{ users|length }} people associated with The Lab.

{% for user in users %}
Account:
Name:
Network:
{% if user.affiliations %} {% for affiliation in user.affiliations %}
{% include "facebook/person-network" %}
{% endfor %} {% else %}
None
{% endif %}
{% endfor %}
{% endblock %} {% block id %}$Id${% endblock %} {# vim: set filetype=htmldjango: #}