{% if hito.estado_resultado %} {% set arregloResultado = hito.estado_resultado | split(' ') %} {% set presentismo = arregloResultado[1] %} {% set aprobado = arregloResultado[3] %} {% set nota = arregloResultado[5] %} {% else %} {% set presentismo = false %} {% set aprobado = false %} {% set nota = null %} {% endif %} {% if aprobado %} {% set class_color = 'green-text' %} {% else %} {% set class_color = 'pink-text' %} {% endif %}
  • {{ hito.fecha |format_datetime(pattern='EEEE', timezone='America/Argentina/Buenos_Aires') |capitalize ~ ' ' ~ hito.fecha|date('d/m/Y')}}
    Entrevista Personal ({{ presentismo ? 'Presente' : 'Ausente'}})

    {{ hito.cargo }}

    {{ nota ? 'Nota: ' ~ nota : '--' }}