SOITA/templates/solvedTests.html

24 lines
1.1 KiB
HTML
Raw Normal View History

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-04-15 21:04:04 +02:00
{% for test, results in tests_lists.items %}
<div class="solvedTestContainer">
<div class="mainTestName">
{{results.0.name}}
</div>
<div class="solvedTestText">Twój wynik: {{results.0.score}}</div>
<div class="solvedTestText">Próg zaliczenia: {{results.0.passing_score}}</div>
<div class="solvedTestText">Maksymalny wynik: {{results.0.max}}</div>
<div class="solvedTestText">Wynik procentowy: {{results.0.percentage}}%</div>
{% if results|length > 1 %}
<div class="linkDefault">
<a href="solved/{{results.0.id}}">Sprawdź poprzednie wyniki ({{results|length}})</a>
</div>
{% endif %}
2022-01-23 17:10:05 +01:00
</div>
2022-04-15 21:04:04 +02:00
<br>
{% endfor %}
2022-01-23 17:10:05 +01:00
{% endblock %}