{% extends "base.html" %} {% block title %}{{ contact.name }}{% endblock %} {% block content %}

I.D.: {{ contact.name }}

{% if contact.profile_pic %} {{ contact.name }}'s profile {% else %}
{{ contact.name[0]|upper }}
{% endif %}
{% if contact.legal_name %}
Legal name: {{ contact.legal_name }}
{% endif %} {% if contact.suffix %}
Suffix: {{ contact.suffix }}
{% endif %} {% if contact.gender %}
Gender: {{ contact.gender }}
{% endif %} {% if contact.age %}
Age: {{ contact.age }}
{% endif %} {% if contact.current_job %}
Job: {{ contact.current_job }}
{% endif %} {% if contact.social_structure_style %}
Social style: {{ contact.social_structure_style }}
{% endif %} {% if contact.self_sufficiency_score is not none %}
Self-Sufficiency: {{ contact.self_sufficiency_score }}
{% endif %} {% if contact.timezone %}
Timezone: {{ contact.timezone }}
{% endif %} {% if contact.safe_conversation_starters %}
Safe con starters: {{ contact.safe_conversation_starters }}
{% endif %} {% if contact.topics_to_avoid %}
Topics to avoid: {{ contact.topics_to_avoid }}
{% endif %} {% if contact.goals %}
Goals: {{ contact.goals }}
{% endif %}
{% if contact.bio %}
Bio: {{ contact.bio }}
{% endif %}

Relationships

{% if grouped_relationships.familial %}
Familial: {% for rel in grouped_relationships.familial %} {{ contact_names[rel.related_contact_id] }}({{ rel.relationship_type|replace("_", " ")|title }}){% if not loop.last %}, {% endif %} {% endfor %}
{% endif %} {% if grouped_relationships.partners %}
Partners: {% for rel in grouped_relationships.partners %} {{ contact_names[rel.related_contact_id] }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endif %} {% if grouped_relationships.friends %}
Friends: {% for rel in grouped_relationships.friends %} {{ contact_names[rel.related_contact_id] }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endif %} {% if grouped_relationships.professional %}
Professional: {% for rel in grouped_relationships.professional %} {{ contact_names[rel.related_contact_id] }}({{ rel.relationship_type|replace("_", " ")|title }}){% if not loop.last %}, {% endif %} {% endfor %}
{% endif %} {% if grouped_relationships.other %}
Other: {% for rel in grouped_relationships.other %} {{ contact_names[rel.related_contact_id] }}({{ rel.relationship_type|replace("_", " ")|title }}){% if not loop.last %}, {% endif %} {% endfor %}
{% endif %} {% if contact.related_from %}
Known by: {% for rel in contact.related_from %} {{ contact_names[rel.contact_id] }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endif %}
{% if contact.needs %}
{% for need in contact.needs %}
Warning: {{ need.name }} {% if need.description %} - {{ need.description }}{% endif %}
{% endfor %}
{% endif %}
Manage Contact

Manage Relationships

{% include "partials/manage_relationships.html" %}
{% if all_contacts %}
{% endif %}

Manage Needs/Warnings

{% include "partials/manage_needs.html" %}
{% if available_needs %}
{% endif %}
{% endblock %}