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

{% call ui::icon("local") %}{% endcall %}Local DNS records

Authoritative answers served without contacting upstreams. Wildcards like *.home.lan are supported.

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

No local records yet.

{% else %}
{% for r in records %} {% endfor %}
NameTypeValueTTL
{{ r.name }} {{ r.record_type }} {{ r.value }} {{ r.ttl }}
{% endif %} {% endblock %}