SOITA/templates/solvedTests.html
2022-01-30 14:26:15 +01:00

19 lines
731 B
HTML

{% extends "base.html" %}
{% block title %}Rozwiązane testy{% endblock %}
{% block content %}
<h1>Historia rozwiązanych testów</h1>
{% for test in tests %}
<div class="solvedTestContainer">
<div class="mainTestName">
{{test.name}}
</div>
<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>
</div>
<br>
{% endfor %}
{% endblock %}