{%extends "rolodex/base.html" %} {%load staticfiles%} {% load rolodex_tags %} {%block head%} {%endblock%} {%block content%}
{% if node.net_length > 2 %}
Full page graph
{%endif%}

{{node.firstName}} {{node.lastName}}

{%if node.birthdate%} born {{node.birthdate}}
{%endif%} {%if node.race%} {{node.race}} {%endif%} {%if node.gender%} {{node.gender|title}} {%endif%} {%if node.ethnicity%} {{node.ethnicity}}
{%endif%}
{%if node.role%} {{node.role|title}}
{%endif%} {%if node.position%} {{node.position}}
{%endif%} {%if node.department%} {{node.department|title}} department
{%endif%}
{%if node.notes%}
{{node.notes|linebreaks}}
{%endif%}
{%for tag in node.tags%} {%endfor%}
Add/edit basic info
Contacts
{%for contact in node.contacts%} {%if contact.role%}
{{contact.role}}
{%endif%} {%endfor%}
Relationships
{%for r in node.relations.orgs%} {% spaceless %}
{{r.relation.orgName}}
{{r.type|capfirst}}
{% endspaceless %} {%endfor%}
{%for r in node.relations.people%} {% spaceless %}
{{r.relation.firstName}} {{r.relation.lastName}}
{{r.type|capfirst }}{%if r.relation.role%}{%if r.type%} - {%endif%}{{r.relation.role.role|capfirst }}{%endif%}
{% endspaceless %} {%endfor%}
Documents
Search log
Last edited by: {{node.last_edited_by}}
Delete {{node.firstName}}?
{%endblock%}