ścieżki kopernika - test form
[edumed.git] / edumed / templates / contact / sciezki-kopernika-test / results.html
1 {% extends base_template|default:"base.html" %}
2 {% load i18n %}
3
4 {% block title %}Wyniki{% endblock %}
5
6 {% block body %}
7     <h1>Wyniki</h1>
8
9     <p>Suma uzyskanych punktów: {{ results.points|floatformat }} na {{ results.total }} możliwych.</p>
10
11     <p class="box-button" style="max-width: 20em;"><a href="{% url 'contact_form' 'sciezki-kopernika' %}" class="nice-button">Zgłoś się na warsztaty</a></p>
12
13     {% for question in results.questions %}
14         <strong>{{ question.label }}</strong>
15         <ol type="a">
16             {% for answer, chosen, correct in question.answers %}
17                 <li style="{% if chosen %}font-weight: bold;{% endif %}{% if correct %}color: #00cc44;{% endif %}">{{ answer }}</li>
18             {% endfor %}
19         </ol>
20         {% if question.chosen == question.correct %}
21             <p>Wybrana poprawna odpowiedź {{ question.chosen }}.</p>
22         {% else %}
23             <p>Wybrana odpowiedź {{ question.chosen }}, poprawna odpowiedź {{ question.correct }}.</p>
24         {% endif %}
25         <p>Komentarz do odpowiedzi: {{ question.comment }}</p>
26     {% endfor %}
27     <p class="box-button" style="max-width: 20em;"><a href="{% url 'contact_form' 'sciezki-kopernika' %}" class="nice-button">Zgłoś się na warsztaty</a></p>
28 {% endblock %}