summaryrefslogtreecommitdiff
path: root/templates/mirrors/status_table.html
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2019-03-23 20:05:34 -0400
committerLuke Shumaker <lukeshu@parabola.nu>2019-03-23 20:05:34 -0400
commit87bd4a32b2eb983a34bf28eaee6e2c6ce5a405ee (patch)
treef8686805323e4c71c582480aaa64203415240a03 /templates/mirrors/status_table.html
parent7f68a8f0f79ac1548aaece3ebd65a296714163a6 (diff)
parenta526410f2a5be83c0b853bb4e7624c77997ccd61 (diff)
Merge branch 'archweb-generic' into lukeshu/master
Diffstat (limited to 'templates/mirrors/status_table.html')
-rw-r--r--templates/mirrors/status_table.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/mirrors/status_table.html b/templates/mirrors/status_table.html
new file mode 100644
index 00000000..3f8cd2d9
--- /dev/null
+++ b/templates/mirrors/status_table.html
@@ -0,0 +1,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>