SOITA/templates/solvedTests.html

24 lines
1.1 KiB
HTML

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