{% extends "base.html" %}
{% block title %}Customer Log | Customer Log & Sign Off{% endblock %}
{% block content %}
Capture customer details, address, contacts, machine interests, notes, and multiple statuses.Customer Log
Start with one contact, then use Add another contact when needed.
Search, filter, edit, and export your customer records.
| Company | Contacts | Machines | Status | Next contact | Actions |
|---|---|---|---|---|---|
|
{{ customer.company_name }}
{% if customer.website %}{% endif %}
{% if customer.address_summary %}{{ customer.address_summary }} {% endif %}
Created: {{ customer.created_date }}
|
{% if customer.contacts %}
{% for contact in customer.contacts %}
{{ contact.contact_name or 'Unnamed' }}
{% if contact.role %}{{ contact.role }}{% endif %}
{% if contact.phone %}{{ contact.phone }}{% endif %}
{% if contact.email %}{{ contact.email }}{% endif %}
{% endfor %}
{% else %}
No contacts
{% endif %}
|
{% if customer.machine_interests %} {% else %}None{% endif %} |
{% for status in customer.statuses %}
{{ status }}
{% endfor %}
|
{{ customer.next_contact_date or '-' }} |