{% extends 'layout.html' %}
{% load i18n %}
{% load staticfiles %}
{% load bw %}
{% block content %}
{% trans 'Our Servers' %}
-
{% blocktrans trimmed with n_users=n_users %}
We have {{ n_users }} active users.
{% endblocktrans %}
{% blocktrans trimmed with n_sess=n_sess %}
{{ n_sess }} are using our VPN right now.
{% endblocktrans %}
-
{% blocktrans trimmed with n_gw=n_gw n_countries=n_countries %}
They are connected to {{ n_gws }} servers spread across
{{ n_countries }} countries to provide a low-latency
and secure access anywhere in the world.
{% endblocktrans %}
-
{% with total_bw|bwformat as total_bw_f %}
{% blocktrans trimmed with total_bw=total_bw_f %}
Our network has a total bandwidth of {{ total_bw }} and
all our servers are DDoS-protected.
{% endblocktrans %}
{% endwith %}
{% trans 'Locations' %}
{% trans 'Location' %} |
{% trans 'Hostname' %} |
{% trans 'Servers' %} |
{% trans 'Bandwidth' %} |
{% for country, d in locations %}
{{ d.country_name }} |
{{ d.hostname }}
|
{{ d.servers|length }} |
{{ d.bandwidth|bwformat }} |
{% endfor %}
{% endblock %}