{% load static %}

A


{% for topic in topic_statistics %} {% if topic.marks_per_minute >= topic.question__sub_section__strong %}
{{topic.question__topic__topic_name}}
{% endif %} {% endfor %}

B


{% for topic in topic_statistics %} {% if topic.marks_per_minute > topic.question__sub_section__weak and topic.marks_per_minute < topic.question__sub_section__strong %}
{{topic.question__topic__topic_name}}
{% endif %} {% endfor %}

C


{% for topic in topic_statistics %} {% if topic.marks_per_minute <= topic.question__sub_section__weak %}
{{topic.question__topic__topic_name}}
{% endif %} {% endfor %}