You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB
HTML

8 years ago
{% extends 'layout.html' %}
{% load i18n %}
{% load static %}
8 years ago
{% load bw %}
{% block content %}
3 years ago
<div class="pure-g content">
<div class="pure-u-1 pure-u-xl-2-3" id="gateways">
<h2>{% trans 'Our Servers' %}</h2>
8 years ago
<table>
<thead>
<tr><td>{% trans 'Location' %}</td>
<td>{% trans 'Hostname' %}</td>
<td>{% trans 'Servers' %}</td>
3 years ago
<td>{% trans 'Load' %}</td>
8 years ago
</tr>
</thead>
<tbody>
{% for country, d in locations %}
3 years ago
<tr><td class="left">{{ d.country_name }}</td>
<td class="left host_line">
8 years ago
<span class="host_name">{{ d.hostname }}</span>
</td>
3 years ago
<td class="right">{{ d.servers|length }}</td>
<td class="right">
{{ d.load_percent|floatformat:1 }}%
of
{{ d.bandwidth|bwformat }}
</td>
8 years ago
</tr>
{% endfor %}
</tbody>
</table>
</div>
3 years ago
</div>
<script type="text/javascript" src="/static/ping.js"></script>
8 years ago
{% endblock %}