{% extends "ui/templates/base/layout.html" %} {% block content %}

{{ lead.lead_no }} - {{ lead.lead_name }}

{{ lead.service_requested }} • {{ lead.status }}

Back

Lead Details

Business
{{ lead.business_name or '-' }}
Contact
{{ lead.mobile or '-' }} / {{ lead.email or '-' }}
Location
{{ lead.city or '-' }}, {{ lead.state or '-' }}
Category
{{ lead.service_category or '-' }}
Priority
{{ lead.priority }}
Estimated Value
{{ lead.estimated_value }}
Assigned Audit Firm ID
{{ lead.assigned_tenant_id or '-' }}
Assigned Partner User ID
{{ lead.assigned_partner_user_id or '-' }}
Message
{{ lead.message or '-' }}
{% if can_update %}

Update Status

{% endif %} {% if can_assign %}

Assign Lead

{% endif %} {% if can_convert and not lead.converted_client_id and lead.assigned_tenant_id %}

Convert to Client

{% elif can_convert and not lead.converted_client_id and not lead.assigned_tenant_id %}
Assign this lead to an Audit Firm before converting it to a client.
{% elif lead.converted_client_id %}
Converted to Client ID {{ lead.converted_client_id }}
{% endif %}
{% endblock %}