{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav %} {% block title %}{{ _('Convert to Client') }} - {{ lead.full_name }} - {{ config.APP_NAME }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': _('Leads'), 'url': url_for('leads.list_leads')}, {'text': lead.full_name, 'url': url_for('leads.view_lead', lead_id=lead.id)}, {'text': _('Convert to Client')} ] %} {{ page_header( icon_class='fas fa-user-check', title_text=_('Convert to Client'), subtitle_text=lead.full_name, breadcrumbs=breadcrumbs ) }}

{{ _('This will create a new client and primary contact from this lead, then mark the lead as converted.') }}

{{ _('Lead summary') }}

{{ lead.full_name }}{% if lead.company_name %} ยท {{ lead.company_name }}{% endif %}

{% if lead.email %}

{{ lead.email }}

{% endif %} {% if lead.phone %}

{{ lead.phone }}

{% endif %}
{{ _('Cancel') }}
{% endblock %}