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

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 %} {% endfor %}
URL Format Entries Updated Status
{{ s.url }} {{ s.format }} {{ s.entry_count }} {{ s.last_updated }} {% if s.enabled %}enabled {% else %}disabled{% endif %}
{% endif %} {% endblock %}