{% use 'WebelopingLanderBundle:Includes:cont_bar_box.html.twig' %} {% block evolution_box %}
PUNTOS {{ evolution.points_average|number_format }}
USUARIOS {{ evolution.users|number_format }}
PROGRESO
{% include 'WebelopingLanderBundle:Includes:progress.html.twig' with {'big' : true, 'progress' : evolution.progress }%}
{% set value = evolution.technical_knowledge|number_format %} {% set title = "CONOCIMENTO BÁSICO" %} {% set color = "yellow" %} {% set label = "progress-bar-warning" %} {{ block('cont_bar_box') }} {% set value = evolution.skills|number_format %} {% set title = "HABILIDADES" %} {% set color = "red" %} {% set label = "progress-bar-danger" %} {{ block('cont_bar_box') }} {% set value = evolution.best_practices|number_format %} {% set title = "BUENAS PRÁCTICAS" %} {% set color = "green" %} {% set label = "progress-bar-success" %} {{ block('cont_bar_box') }} {% set value = evolution.info_company|number_format %} {% set title = "CONOCIMIENTO CORPORATIVO" %} {% set color = "blue" %} {% set label = "progress-bar-info" %} {{ block('cont_bar_box') }}
{% endblock %}