8e0164f6ef4f39f9fe255950d7e3feb56e615d4c
[edumed.git] / edumed / templates / contact / collegium-mlodych-test / results.html
1 {% extends base_template|default:"base.html" %}
2 {% load i18n %}
3
4 {% block title %}Wyniki{% endblock %}
5
6 {% block body %}
7     {% include 'sciezki_logos.html' %}
8     <h1>Wyniki</h1>
9
10     <p>Suma uzyskanych punktów: {{ results.points|floatformat }} na {{ results.total }} możliwych.</p>
11
12     {#<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>#}
13
14     {% for question in results.questions %}
15         <strong>{{ question.label }}</strong>
16         <ol class="alpha">
17             {% for answer, chosen, correct in question.answers %}
18                 <li style="{% if chosen %}font-weight: bold;{% endif %}{% if correct %}color: #00cc44;{% endif %}">{{ answer }}</li>
19             {% endfor %}
20         </ol>
21         <p><strong>Komentarze do odpowiedzi:</strong></p>
22         {% for answer in question.answer_data %}
23             <p><strong>{{ answer.letter }}</strong>:</p>
24             {{ answer.comment }}
25         {% endfor %}
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     <p>Pytania stworzyli: Grzegorz Stunża, Marcin Wilkowski.</p>
29     <p>Komentarzami opatrzyli: Paulina Piasecka, Paweł Maranowski.</p>
30
31 {% endblock %}