aboutsummaryrefslogtreecommitdiff
path: root/allium/templates/as.html
blob: 29894770bbc308faba64e7cd7f9a733fa9d1f186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "relay-list.html" %}
{% set as_number = relays.json['relay_subset'][0]['as']|escape %}
{% set as_name = relays.json['relay_subset'][0]['as_name']|escape %}
{% block title %}Tor Relays :: {{ as_name }} ({{ as_number }}){% endblock %}
{% block header %}<a href="../../">Home</a> :: {{ as_name }} ({{ as_number }}){% endblock %}
{% block description %}{{ as_number }} is responsible for ~{{ bandwidth }} MB/s
of traffic, with
{% if middle_count > 0 %}
    {{ middle_count }} middle relay
    {%- if middle_count > 1 -%}s{% endif %}
    {% if exit_count > 0 %}
        and
    {% endif %}
{% endif %}
{% if exit_count > 0 %}
    {{ exit_count }} exit relay
    {%- if exit_count > 1 -%}s{%- endif -%}
{%- endif -%}
.{% endblock %}