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

{{ person }}

{% if user.is_authenticated %} {% with person.userprofile_set.get as user_profile %} {% with user_profile.screenname_set.all as screennames %} {% endwith %} {% endwith %} {% endif %}
Account {{ person }} Name {{ person.full_name }}
Shell {% if person.get_shell_url %}{{ person.shell }}{% else %}{{ person.shell }}{% endif %} del.icio.us {% if person.delicious_user_set.all %}{% listify user in person.delicious_user_set.all %}{{ user }}{% endlistify %}{% else %}None{% endif %}
Email {% if user_profile.user.email %}{{ user_profile.user.email }}{% else %}None{% endif %}Screenname{{ screennames|pluralize }} {% if screennames %}{% listify screenname in screennames %}{% if screenname.get_absolute_url %}{{ screenname }}{% else %}{{ screenname }}{% endif %}{% endlistify %}{% else %}None{% endif %}
Phone {% if user_profile.phone %}{{ user_profile.phone }}{% else %}None{% endif %} Website {% if user_profile.website %}{{ user_profile.website }}{% else %}None{% endif %}
Facebook Profile{% if person.is_default %}s{% endif %} {% if users %}{% listify user in users %} {% if user.name %}{{ user.name }}{% else %}{{ person.full_name }}{% endif %}{% endlistify %}{% else %}None{% endif %}
Laptop{{ laptops|pluralize }} {% if laptops %}{% listify laptop in laptops %}{{ laptop.laptop_name }}{% endlistify %}{% else %}None{% endif %}
Computers {% if person.login_set.all %}{% listify login in person.login_set.all %}{{ login.computer }}{% endlistify %}{% else %}None{% endif %}
Plan
{{ person.plan|safe }}
Project
{{ person.project|safe }}
ccscslab {% if not person.is_default %} {% with person.delicious_user_set.get as user %} {% if user.title %}

{{ user.title }}

{% endif %} {% if user.description %}

{{ user.description }}

{% endif %} {% endwith %} {% endif %} {% if bookmarks %}
{% for bookmark in bookmarks %}
{{ bookmark.description }}
{% if bookmark.notes %}
{{ bookmark.notes }}
{% endif %}
tags: {% for tag in bookmark.get_tags %}{{ tag }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% if bookmark.others %}
saved by: {{ bookmark.others }} other pe{{ bookmark.others|pluralize:"rson,ople" }}
{% endif %} {% endfor %}
{% endif %}

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