summaryrefslogtreecommitdiffstats
path: root/templates/isotests/result_list.html
blob: 06042b1c2f3ff7e486d45c3a95dd28c61f2dab6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}

{% block content %}
<a href="/isotests/">Go back to results</a>
<a href="/isotests/add/">Give feedback</a>

<div class="box">
    <h2>
        Results for :
        {% if option %}
        {{ option }}: {{ value }}
        {% endif %}

        {% if iso_name %}
        {{ iso_name }}
        {% endif %}
    </h2>

    <table>
        <tr>
            <th>iso</th>
            <th>nickname</th>
            <th>success?</th>
        </tr>
        {% for test in test_list %}
        <tr>
            <td>{{ test.iso.name }}</td>
            <td>{{ test.user_name }}</td>
            <td>{{ test.success|yesno }}</td>
        </tr>
        {% endfor %}
    </table>
</div>
{% endblock %}