{% if lead.lead_source == 1 %} Sales agent {% endif %}
{% if lead.lead_source == 2 %} Facebook {% endif %}
{% if lead.lead_source == 3 %} Instagram {% endif %}
{% if lead.lead_source == 4 %} Linkin {% endif %}
{% if lead.lead_source == 5 %} Website {% endif %}
{% if lead.lead_source == 6 %} Referral {% endif %}
{% if lead.business_type == 1 %} Commercial {% endif %}
{% if lead.business_type == 2 %} Residential {% endif %}
{% if lead.business_type == 3 %} Shopfitters {% endif %}
{% if lead.business_type == 4 %} Other {% endif %}
{% for product in allproducts %}
{% if product.id in selected_product_ids %} {{ product.product_name }}({{ product.sku}}) {% endif %}
{% endfor %}
{{ lead.street }}
{{ lead.city }}
{% if lead.state == 'ACT' %} Australian Capital Territory {% endif %}
{% if lead.state == 'NSW' %} New South Wales {% endif %}
{% if lead.state == 'NT' %} Northern Territory {% endif %}
{% if lead.state == 'QLD' %} Queensland {% endif %}
{% if lead.state == 'SA' %} South Australia {% endif %}
{% if lead.state == 'TAS' %} Tasmania {% endif %}
{% if lead.state == 'VIC' %} Victoria {% endif %}
{% if lead.state == 'WA' %} Western Australia {% endif %}
{{ lead.post_code }}
Australia
{% if '1' in request.user.get_role or user.is_superuser %}
{% for user in users %}
{% if user.id|stringformat:"s" == lead.assigned_to.id|stringformat:"s" %} {% if user.userinfo.first_name %}{{ user.userinfo.first_name }} {{ user.userinfo.last_name }}{%else%}-{%endif%} {% endif %}
{% endfor %}