{% extends "base.html" %} {% block content %}

All Users

{% if users %} {% for user in users %} {% endfor %}
Username Total Questions Correct Answers Overall Correctness Recent 100 Score Actions
{{ user.username }} {{ user.total_questions }} {{ user.correct_answers }} {{ user.overall_correctness }}% {{ user.recent_100_score }}% View Details
{% else %}

No users found. Start by taking an exam!

Take Exam
{% endif %}

Add New User

{% endblock %}