{% extends "base.html.j2" %} {% block content %}

Welcome

Welcome to the Bypass Censorship portal.

Groups

Active Groups: {{ groups | count }}

{% for group in groups %} {{ group.group_name }} {{ ", " if not loop.last else "" }}{% endfor %}

Proxies

Total proxies running: {{ proxies | count }}

Marked blocked:

  • Last 24 hours: {{ last24 }}
  • Last 72 hours: {{ last72 }}
  • Last week: {{ lastweek }}

Tor Bridges

Total bridges running: {{ bridges | count }}

Marked blocked:

  • Last 24 hours: {{ br_last[1] }}
  • Last 72 hours: {{ br_last[3] }}
  • Last week: {{ br_last[7] }}

Onion Services

Origins with onion services:
{% if total_origins > 0 %}

{{ onionified }}/{{ total_origins }}

{{ (onionified / total_origins * 100) | int }}%
{% else %}

No origins configured.

{% endif %}

OONI

Origins with censorship detected:
{% if total_origins > 0 %}

{{ ooni_blocked }}/{{ total_origins }}

{{ (ooni_blocked / total_origins * 100) | int }}%
{% else %}

No origins configured.

{% endif %}

Alarms

Current status
  • Critical: {{ critical }}
  • Warning: {{ warning }}
  • OK: {{ ok }}
  • Unknown: {{ unknown }}
View alarms

Activity

{% for a in activity %} {% endfor %}
{{ a.text }} {{ a.added | format_datetime }}
{% endblock %}