{% extends 'quiz/base.html' %} {% load quiz_extras %} {% block css %} {% endblock %} {% block content %} {% include 'quiz/_header.html' with active='students' %}

{% for student in students %}
{{student.user.get_full_name}}
{{student.user.username}}
{{student.score}}
{{student.taken_quizzes.all|top_subject}}
{% empty %}

No student matched your search.

{% endfor %}
{% if is_paginated %} {% endif %} {% endblock %}