summaryrefslogtreecommitdiffstats
path: root/templates/mirrors/status.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-05-10 17:59:53 -0500
committerDan McGee <dan@archlinux.org>2013-05-10 17:59:53 -0500
commit76be96ac2c11604a2bfceed4212b686719620b13 (patch)
tree113f7e2333ebbe479fedb85879df7391abd3626b /templates/mirrors/status.html
parent4e872235010b1b7ad8cb6912b9e3ccf4c39a352d (diff)
downloadarchweb-76be96ac2c11604a2bfceed4212b686719620b13.tar.gz
archweb-76be96ac2c11604a2bfceed4212b686719620b13.zip
Pull mirror error table into inclusion template
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/mirrors/status.html')
-rw-r--r--templates/mirrors/status.html24
1 files changed, 1 insertions, 23 deletions
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html
index a3da1ad6..331c18ee 100644
--- a/templates/mirrors/status.html
+++ b/templates/mirrors/status.html
@@ -71,29 +71,7 @@
<a name="errorlog" id="errorlog"></a>
<h3>Mirror Syncing Error Log</h3>
- <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>
- </tr>
- </thead>
- <tbody>
- {% for log in error_logs %}<tr class="{% cycle 'odd' 'even' %}">
- <td>{{ log.url__url }}</td>
- <td>{{ log.url__protocol__protocol }}</td>
- <td class="country">{% country_flag log.country %}{{ log.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>
- </tr>{% endfor %}
- </tbody>
- </table>
-
+ {% include "mirrors/error_table.html" %}
</div>
{% endblock %}