aboutsummaryrefslogtreecommitdiff
path: root/allium/templates/contact.html
blob: cc3edd10b9c10523aebbf66f539e2156e2040046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "relay-list.html" %}
{% set contact_hash = relays.json['relay_subset'][0]['contact_md5'] %}
{% if relays.json['relay_subset'][0]['contact'] %}
    {% set contact = relays.json['relay_subset'][0]['contact']|escape %}
{% else %}
    {% set contact = 'none' %}
{% endif %}
{% block title %}Tor Relays :: Contact {{ contact_hash }}{% endblock %}
{% block header %}
    <a href="../../">Home</a> :: Contact {{ contact_hash }}{% endblock %}
    {% block description %}
        Relays with contact info <code>{{ contact }}</code> are
        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 %}