{% extends 'professor_dashboard.html' %} {% block body %}
{% if callresults is not none %}

STUDENT PROCTORING LOGS OF {{testid}} - {{name}} - {{email}} [MORE THAN 1 PERSON FOUND]

{% for res in callresults%}
img_data
EYES: {% if res['user_movements_eyes'] == 1 %} BLINKING {% elif res['user_movements_eyes'] == 4 %} LOOKING RIGHT {% elif res['user_movements_eyes'] == 3 %} LOOKING LEFT {% elif res['user_movements_eyes'] == 2 %} LOOKING CENTER {% else %} NOT FOUND! {% endif %}
HEAD [UP/DOWN]: {% if res['user_movements_updown'] == 1 %} UP {% elif res['user_movements_updown'] == 2 %} DOWN {% else %} NOT FOUND! {% endif %}
HEAD [LEFT/RIGHT]: {% if res['user_movements_lr'] == 4 %} RIGHT {% elif res['user_movements_lr'] == 3 %} LEFT {% else %} NOT FOUND! {% endif %}
{% if res['phone_detection'] == 1 %}
MOBILE: MOBILE DETECTED!
{% elif res['phone_detection'] == 0 %}
MOBILE: NO MOBILE DETECTED!
{% else %}
MOBILE: NOT FOUND!
{% endif %}
{% if res['person_status'] == 1 %}
PERSON: MORE THAN 1 PERSON DETECTED
{% else %}
PERSON: NORMAL
{% endif %}
TRANSACTION TIME: {{res['log_time']}}
{% endfor %}
{% else %}

No Records Found!

{% endif %}
{% endblock %}