{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav %} {% block title %}{{ contact.full_name }} - {{ config.APP_NAME }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': 'Clients', 'url': url_for('clients.list_clients')}, {'text': contact.client.name, 'url': url_for('clients.view_client', client_id=contact.client_id)}, {'text': 'Contacts', 'url': url_for('contacts.list_contacts', client_id=contact.client_id)}, {'text': contact.full_name} ] %} {{ page_header( icon_class='fas fa-user', title_text=contact.full_name, subtitle_text=contact.title or 'Contact', breadcrumbs=breadcrumbs, actions_html='Edit' ) }}
{% if contact.email %}{{ contact.email }}{% else %}N/A{% endif %}
{{ contact.phone or 'N/A' }}
{{ contact.mobile }}
{{ contact.title }}
{{ contact.department }}
{{ contact.role|title }}
{{ contact.address }}
{{ contact.notes }}
{{ comm.communication_date.strftime('%Y-%m-%d %H:%M') }}
{% if comm.content %}{{ comm.content }}
{% endif %}{{ _('No communications recorded') }}
{% endif %}