{% set info = employee_service.ConsultantSummary() %}
<div class="widget style1 navy-bg-white">
<div class="row">
<div class="col-3">
<i class="fa fa-male fa-5x"></i>
</div>
<div class="col-9 text-right">
<h3 class="font-bold">{{ 'Employee.Consultant' | trans }}</h2>
<a href="{{ path('employee_index', {available:1}) }}" >
{{ 'Employee.AvailableConsultants' | trans }}: {{info.availableconsultant}}
</a>/<a href="{{ path('employee_index') }}" >
{{ info.totalconsultant }}
</a><br>
<a href="{{ path('employee_index', {available:1, hot:1}) }}" >
{{ 'Employee.AvailableHotConsultants' | trans }}: {{info.availablehotconsultant}}
</a>/<a href="{{ path('employee_index', {hot:1}) }}" >
{{ info.totalhotconsultant }}
</a>
</div>
</div>
</div>