{% extends "base.html" %} {% import "_macros.html" as ui %} {% block title %}Blocklists ยท sagittarius{% endblock %} {% block content %}

{% call ui::icon("blocklists") %}{% endcall %}Blocklist sources

Subscribed lists are fetched, parsed, and merged into the in-memory blocklist set.

{% if let Some(notice) = notice %}

{{ notice }}

{% endif %} {% if let Some(error) = error %} {% endif %}
{% if sources.is_empty() %}

No blocklist sources yet.

{% else %}
{% for s in sources %} {% if s.removed %} {% else %} {% endif %} {% endfor %}
URL Format Entries Blocked (24h) Share Updated Status
{{ s.url }}{{ s.url }}{{ s.format }} {{ s.entry_count }} {{ s.blocked }} {{ s.share }} {{ s.last_updated }} {% if s.removed %} {% else if s.enabled %}enabled {% else %}disabled{% endif %} {% if !s.removed %}
{% endif %}
{% endif %} {% endblock %}