{% extends 'dashboard/base-dashboard.html' %} {% block content %}

{{ student.first_name }} {{ student.last_name }}

Grade: {{ student.grade }}

Classroom: {{ student.classroom.name }}

Exam Taken: {{ student.get_exam_taken_display }}

{% if student.risk == 'GREAT' %}

Risk Level: {{ student.risk }}

{% elif student.risk == 'AT_RISK' %}

Risk Level: AT RISK

{% else %}

Risk Level: {{ student.risk }}

{% endif %} {% if student.exam_taken == 'Y' %}

Time spent: {{ student.timespent }}

Questions:

Question 1: {{ student.get_question_1_display }}

Question 2: {{ student.get_question_2_display }}

Question 3: {{ student.get_question_3_display }}

Question 4: {{ student.get_question_4_display }}

Question 5: {{ student.get_question_5_display }}

Question 6: {{ student.get_question_6_display }}

Question 7: {{ student.get_question_7_display }}

Question 8: {{ student.get_question_8_display }}

Question 9: {{ student.get_question_9_display }}

Question 10: {{ student.get_question_10_display }}

{% endif %}
{% endblock content %}