{% extends "base.html" %} {% block title %}{% if is_edit %}Edit Client | PMS{% else %}Add Client | PMS{% endif %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% if is_edit %}Edit Client{% else %}Add Client{% endif %}

Capture client details with person-wise contacts.

Back to Clients
{% csrf_token %}

Core Details

Active Client

Keep checked while this client is active. Uncheck to mark inactive.

*Optional
{% for w in websites_initial %}
{% endfor %}

People

{% if people_errors %}
    {% for err in people_errors %}
  • {{ err }}
  • {% endfor %}
{% endif %}
{% for person in people_initial %}
Person {{ forloop.counter }}

Primary Person

Main contact for this client.

{% for email in person.emails %}
{% endfor %}
{% for mobile in person.mobiles %}
{% endfor %}
{% if person.profiles %} {% for profile in person.profiles %}
{% endfor %} {% else %}
{% endif %}
{% for value, label in availability_day_choices %} {% empty %} {% endfor %}
{% endfor %}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}