{% if app.user %}
{% if expert.chatStatus == 0 %}
{% set pop_title = "I'm Currently Off-Line" %}
{% set pop_content = "Apologies, but I can't chat now. Pls email me for a future chat time." %}
{% elseif expert.chatStatus == 1 %}
{% set pop_title = "I'm Currently On-Line" %}
{% set pop_content = "I'm ready to chat right now!" %}
{% elseif expert.chatStatus == 2 %}
{% set pop_title = "I'm Currently Busy" %}
{% set pop_content = "I'm currently busy with a chat. Pls try a little later to see if I'm free.." %}
{% endif %}
{% else %}
{% set pop_title = "Chat to an Expert" %}
{% set pop_content = "Please logon if you want to chat to one of our experts." %}
{% endif %}
{% set customer = expert.customer %}
{% if expert.customer.path %}
{% else %}
{% endif %}
|
{{ expert.customer.firstname }} {{ expert.customer.lastname }} |
{{ expert.title }}, {{ expert.orginization }} |
{{ expert.customer.country }} |
{{ customer.description }} |
EXPERTISE {{ expert.expertise }} |
{% if expert.chatStatus == 0 %}
I AM CURRENTLY OFF LINE
{% elseif expert.chatStatus == 1 %}
I AM CURRENTLY ON LINE
{% elseif expert.chatStatus == 2 %}
I AM CURRENTLY BUSY ON ON A CHAT
{% endif %}
|
{% if app.user %}
{% if expert.chatStatus == 1 %}
Chat Now?
{% else %}
Email Me?
{% endif %}
{% else %}
{% if expert.chatStatus == 1 %}
Chat Now?
{% else %}
Email Me?
{% endif %}
{% endif %}
|
|
{{ built_snippets['html']| raw }}