aboutsummaryrefslogtreecommitdiff
path: root/tor-metrics/templates/country.html
blob: 8dcb40dea6165ee33d3f384f0f28f7abb4c101a5 (plain)
1
2
3
4
5
6
7
8
9
{% extends "relay-list.html" %}
{% if relays[0]['country_name'] in special_countries %}
    {% set country_name = 'The ' + relays[0]['country_name']|escape %}
{% else %}
    {% set country_name = relays[0]['country_name']|escape %}
{% endif %}
{% block title %}Tor Relays :: {{ relays[0]['country_name']|escape }}{% endblock %}
{% block header %}<a href="../../">Home</a> :: {{ relays[0]['country_name']|escape }}{% endblock %}
{% block description %}{{ country_name }} ({{ relays[0]['country']|escape }}) is responsible for ~{{ bandwidth }} MB/s of traffic.{% endblock %}