aboutsummaryrefslogtreecommitdiff
path: root/tor-metrics/templates/country.html
blob: ca98dc8d588fd6cf26282b6ca02ed9a99e2f115a (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.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 %}