{% extends "base.html" %} {% block title %}Rozwiązane testy{% endblock %} {% block content %}

Historia rozwiązanych testów

{% for test in tests %}
{{test.name}}
Twój wynik: {{test.score}}
Próg zaliczenia: {{test.passing_score}}
Maksymalny wynik: {{test.max}}
Wynik procentowy: {{test.percentage}}%

{% endfor %} {% endblock %}