{% extends "base" %} {% load listify %} {% load facebook %} {% block title %} | People{% endblock %} {% block body %}

People

{% if user.is_authenticated %}{% endif %} {% if user.is_authenticated %}{% endif %} {% for person in people %} {% if user.is_authenticated %}{% endif %} {% if user.is_authenticated %}{% endif %} {% endfor %}
Account Name ComputersLaptop(s) del.icio.usFacebook Profile(s)
{{ person }} {{ person.full_name }} {% if person.login_set.all %}{% listify login in person.login_set.all %}{{ login.computer }}{% endlistify %}{% else %}None{% endif %}{% if person.laptops %}{% listify laptop in person.laptops %}{{ laptop.laptop_name }}{% endlistify %}{% else %}None{% endif %}{% if person.delicious_user_set.all %}{% listify user in person.delicious_user_set.all %}{{ user }}{% endlistify %}{% else %}None{% endif %}{% if person.facebook_users %}{% for user in person.facebook_users %}{% if user.name %}{{ user.name }}{% else %}{{ person.full_name }}{% endif %}{% endfor %}{% else %}None{% endif %}

{% endblock %} {% block id %}$Id${% endblock %} {# vim: set filetype=htmldjango: #}