{% extends 'D2ExpertBundle::base.html.twig' %}
{% set tag_list = d2_get_all_tag_list(experts) %}
{% if app.request.get('page') %}
{% set current_page = 'Page: ' ~ app.request.get('page') %}
{% else %}
{% set current_page = 'Page: 1' %}
{% endif %}
{% block title %}
{{ d2_sys_config('sys_orginization') }} - {% trans %}Experts{% endtrans %}
{% endblock title %}
{% block head_seo %}
{% endblock head_seo %}
{% block head_script_extra %}
{% endblock head_script_extra %}
{% block head_style_extra %}
{% endblock head_style_extra %}
{% block page_header %}
{% endblock page_header %}
{% block content %}
{% if experts|length != 0 %}
{% for entity in experts %}
{% if loop.first %}
{% endif %}
{% if entity.customer.path %}
{% else %}
{% endif %}
|
{{ entity.customer.firstname }} {{ entity.customer.lastname }} |
{{ entity.title }}, {{ entity.orginization }} |
{% if d2_sys_config('sys_text_show_desc') %}{{ entity.titleInfo }} | {% endif %}
{{ entity.customer.country }} |
EXPERTISE {{ entity.expertise }} |
{% if entity.chatStatus == 0 %}
I AM CURRENTLY OFF LINE
{% elseif entity.chatStatus == 1 %}
I AM CURRENTLY ON LINE
{% elseif entity.chatStatus == 2 %}
I AM CURRENTLY BUSY ON ON A CHAT
{% endif %}
|
|
{% if not loop.first and loop.index%2 == 0 %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock content %}