{% extends 'professor_dashboard.html' %} {% block body %} {% if (callresults != none and callresults) %}

UPDATE QUESTIONS

{% for res in callresults%}
Q {{res['qid']}}: {{res['q']}}
A: {{res['a']}} B: {{res['b']}}
C: {{res['c']}} D: {{res['d']}}
ANSWER: {{res['ans'].upper()}} MARKS: {{res['marks']}}
UPDATE
{% endfor %}
{% else %}

No Records Found!

{% endif %} {% endblock %}