2022-01-23 17:10:05 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2022-01-25 18:17:58 +01:00
|
|
|
{% block title %}Rozwiązane testy{% endblock %}
|
2022-01-23 17:10:05 +01:00
|
|
|
|
|
|
|
{% block content %}
|
2022-01-25 18:17:58 +01:00
|
|
|
<h1>Historia rozwiązanych testów</h1>
|
2022-01-23 17:10:05 +01:00
|
|
|
{% for test in tests %}
|
|
|
|
<div class="solvedTestContainer">
|
|
|
|
<div class="mainTestName">
|
|
|
|
{{test.name}}
|
|
|
|
</div>
|
2022-01-25 18:17:58 +01:00
|
|
|
<div class="solvedTestText">Twój wynik: {{test.score}}</div>
|
|
|
|
<div class="solvedTestText">Próg zaliczenia: {{test.passing_score}}</div>
|
|
|
|
<div class="solvedTestText">Maksymalny wynik: {{test.max}}</div>
|
|
|
|
<div class="solvedTestText">Wynik procentowy: {{test.percentage}}</div>
|
2022-01-23 17:10:05 +01:00
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|