16 lines
626 B
HTML
16 lines
626 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Historia testu{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Historia testu: {{name}}</h1>
|
|
{% for test in tests %}
|
|
<div class="solvedTestContainerMini">
|
|
<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 %} |