aboutsummaryrefslogtreecommitdiff
path: root/tor-metrics/templates/country.html
blob: 43db3c3ca6e22fc5ed780f2adf1491ecc455b1b8 (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'] %}
{% else %}
    {% set country_name = relays[0]['country_name'] %}
{% endif %}
{% block title %}Tor Relays :: {{ relays[0]['country_name'] }}{% endblock %}
{% block header %}<a href="../../">Home</a> :: {{ relays[0]['country_name'] }}{% endblock %}
{% block description %}{{ country_name }} ({{ relays[0]['country'] }}) is responsible for ~{{ bandwidth }} MB/s of traffic.{% endblock %}