templates/kernel/user/widget/Widget-User-ConsultantSummary.html.twig line 1

Open in your IDE?
  1. {%  set info =  employee_service.ConsultantSummary() %}
  2. <div class="widget style1 navy-bg-white">
  3.     <div class="row">
  4.         <div class="col-3">
  5.             <i class="fa fa-male fa-5x"></i>
  6.         </div>
  7.         <div class="col-9 text-right">
  8.             <h3 class="font-bold">{{ 'Employee.Consultant' | trans }}</h2>
  9.            
  10.                 <a href="{{ path('employee_index', {available:1}) }}" >
  11.             {{ 'Employee.AvailableConsultants' | trans }}: {{info.availableconsultant}}
  12.         </a>/<a href="{{ path('employee_index') }}" >
  13.             {{ info.totalconsultant }}
  14.         </a><br>
  15.         <a href="{{ path('employee_index', {available:1, hot:1}) }}" >
  16.             {{ 'Employee.AvailableHotConsultants' | trans }}: {{info.availablehotconsultant}}
  17.         </a>/<a href="{{ path('employee_index', {hot:1}) }}" >
  18.             {{ info.totalhotconsultant    }}
  19.         </a>
  20.         </div>
  21.     </div>
  22. </div>