summaryrefslogtreecommitdiffstats
path: root/templates/mirrors/status_table.html
blob: 3a20c06844dd976663b6629335bd5f277feeb463 (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
{% load mirror_status %}
<table id="{{ table_id }}" class="results">
    <thead>
        <tr>
            <th>Mirror URL</th>
            <th>Protocol</th>
            <th>Country</th>
            <th>Last Sync</th>
            <th>Completion %</th>
            <th>μ Delay (hh:mm)</th>
            <th>μ Duration (secs)</th>
            <th>σ Duration (secs)</th>
            <th>Mirror Score</th>
        </tr>
    </thead>
    <tbody>
        {% for m_url in urls %}
        {% spaceless %}<tr class="{% cycle 'odd' 'even' %}">
            <td>{{ m_url.url }}</td>
            <td>{{ m_url.protocol }}</td>
            <td>{% if m_url.real_country %}<img src="{{ m_url.real_country.flag }}"/> {% endif %}{{ m_url.real_country.name }}</td>
            <td>{{ m_url.last_sync|date:'Y-m-d H:i'|default:'unknown' }}</td>
            <td>{{ m_url.completion_pct|percentage:1 }}</td>
            <td>{{ m_url.delay|duration|default:'unknown' }}</td>
            <td>{{ m_url.duration_avg|floatformat:2 }}</td>
            <td>{{ m_url.duration_stddev|floatformat:2 }}</td>
            <td>{{ m_url.score|floatformat:1|default:'∞' }}</td>
        </tr>
        {% endspaceless %}{% endfor %}
    </tbody>
</table>