{% extends 'student_dashboard.html' %} {% block body %}
{% if(tests is not none and tests) %}

EXAM HISTORY

{% for test in tests %} {% endfor %}
Test ID Subject Topic
{{test['test_id']}} {{test['subject']}} {{test['topic']}}
{% else %}

No Records Found!

{% endif %}
{% endblock %}