summaryrefslogtreecommitdiffstats
path: root/templates/mirrors/error_table.html
blob: e22739a1444a873a36342b64ffa77c2c2750c3c0 (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
{% load flags %}
{% load mirror_status %}

<table id="errorlog_mirrors" class="results">
    <thead>
        <tr>
            <th>Mirror URL</th>
            <th>Protocol</th>
            <th>Country</th>
            <th>Error Message</th>
            <th>Last Occurred</th>
            <th>Occurrences (last {{ cutoff|hours }})</th>
            <th></th>
        </tr>
    </thead>
    <tbody>
        {% for log in error_logs %}<tr>
            <td>{{ log.url.url }}</td>
            <td>{{ log.url.protocol.protocol }}</td>
            <td class="country">{% country_flag log.url.country %}{{ log.url.country.name }}</td>
            <td class="wrap">{{ log.error|linebreaksbr }}</td>
            <td>{{ log.last_occurred|date:'Y-m-d H:i' }}</td>
            <td>{{ log.error_count }}</td>
            <td><a href="{{ log.url.get_absolute_url }}">details</a></td>
        </tr>{% endfor %}
    </tbody>
</table>