summaryrefslogtreecommitdiff
path: root/templates/mirrors/status_table.html
blob: 3f8cd2d9f516f3e306260f36006f4e3613671765 (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
{% load flags %}
<table id="{{ table_id }}" class="results">
    <thead>
        <tr>
            <th>Mirror URL</th>
            <th>Protocol</th>
            <th>Country</th>
            <th>Completion %</th>
            <th>μ Delay (hh:mm)</th>
            <th>μ Duration (s)</th>
            <th>σ Duration (s)</th>
            <th>Mirror Score</th>
            <th></th>
        </tr>
    </thead>
    <tbody>
        {% for m_url in urls %}<tr class="{% cycle 'odd' 'even' }}">
            <td>{{ m_url.url }}</td>
            <td>{{ m_url.protocol }}</td>
            <td class="country">{% country_flag m_url.country %}{{ m_url.country.name }}</td>
            <td>{{ m_url.completion_pct|percentage:1 }}</td>
            <td>{{ m_url.delay|duration|default:unknown }}</td>
            <td>{{ m_url.duration_avg|floatvalue:2 }}</td>
            <td>{{ m_url.duration_stddev|floatvalue:2 }}</td>
            <td>{{ m_url.score|floatvalue:1|default:'∞' }}</td>
            <td><a href="{{ m_url.get_absolute_url }}">details</a></td>
        </tr>{% endfor %}
    </tbody>
</table>