{% extends "base.html" %} {% block title %}Client Details | PMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ client.names.first.name|default:"Client" }}

Client profile and contact details.

Profile

  • Client Type {{ client.client_type|title|default:"-" }}
  • Birthdate {{ client.birthdate|default:"-" }}
  • Location {{ client.location|default:"-" }}
  • Team Location for Client {{ client.get_team_location_shared_display|default:"-" }}
  • Manager Location for Client {{ client.get_manager_location_shared_display|default:"-" }}
  • Status {% if client.is_active %}Active{% else %}Inactive{% endif %}
  • Created On {{ client.created_at|date:"d M Y"|default:"-" }}

People Contacts

{% for item in people_contacts %} {% with person=item.person %}

{{ person.name }} {% if person.is_primary %} Primary {% endif %}

{% if person.person_type %}

Type

{{ person.person_type|title }}
{% endif %} {% if person.designation or person.department %}

Company Contact Details

{% if person.designation %}{{ person.designation }}{% endif %} {% if person.department %}{{ person.department }}{% endif %}
{% endif %} {% if person.position or person.work_details %}

Individual Work Details

{% if person.position %}{{ person.position }}{% endif %} {% if person.work_details %}{{ person.work_details }}{% endif %}
{% endif %}

Emails

{% for email in person.emails.all %} {{ email.email }} {% empty %} No emails {% endfor %}

Mobile Numbers

{% for mobile in person.mobiles.all %} {{ mobile.mobile_number }} {% empty %} No mobiles {% endfor %}

Profile Links

{% for profile in person.profile_links.all %} {{ profile.label }} {% empty %} No profile links {% endfor %}

Availability

{% if item.availability_type == "specific" %} Specific Time {% if item.timezone %} {{ item.timezone }} {% endif %} {% if item.days %} {% for day in item.days %} {{ day|title }} {% endfor %} {% endif %} {% if item.start_time or item.end_time %} {% if item.start_time %}{{ item.start_time|time:"h:i A" }}{% else %}--{% endif %} - {% if item.end_time %}{{ item.end_time|time:"h:i A" }}{% else %}--{% endif %} {% endif %} {% else %} Anytime {% endif %}
{% endwith %} {% empty %} No person-wise contacts available. {% endfor %}

Existing Websites

{% for site in client.websites.all %} {{ site.url }} {% empty %} No websites added. {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}