{% extends '::base.html.twig' %} {% block usercss %} {{ parent() }} {% endblock %} {% block body -%}
{{ schedule.batchId }} : {{ schedule.examId }} from {{ schedule.examStartDate|date('d/m/Y h:i A') }} to {{ schedule.examStopDate|date('d/m/Y h:i A') }}
{% set slno = 1 %} {% for entity in entities %} {% set is_attented = "N" %} {% if entity['candidatate_exam_id'] %} {% set is_attented = "Y" %} {% endif %} {% if entity['finalize_result'] == 1 %} {% set is_final = "Y" %} {% else %} {% set is_final = "N" %} {% endif %} {% set slno = slno + 1 %} {% endfor %}
# UserId Name Surname Institution Obj Mark Scored Obj Minus Mark Scored Desc Mark Scored Total Scored Is Attended Is Final Result View
{{ slno }} {{ entity['username'] }} {{ entity['name'] }} {{ entity['surname']}} {{ entity['institution']}} {% if entity['candidatate_exam_id'] %} {{ entity['obj_mark_scored']}} / {{ entity['obj_mark']}} {% endif %} {% if entity['candidatate_exam_id'] %} {{ entity['obj_mark_minus_scored']}} / {{ entity['obj_mark_minus']}} {% endif %} {% if entity['candidatate_exam_id'] %} {{ entity['desc_mark_scored']}} / {{ entity['desc_mark']}} {% endif %} {% if entity['candidatate_exam_id'] %} {{ entity['mark_scored']}} / {{ entity['total_mark']}} {% endif %} {{ is_attented }} {% if entity['candidatate_exam_id'] %} {% if "Y" == is_final %} {{ is_final }} {% else %} {% endif %} {% endif %} {% if is_attented == "Y" %} {% endif %}
{% endblock %}