{% extends "base.html" %} {% set active_page = "admin_global_search" %} {% block title %} Global Search - {{ SITE_NAME }} {% endblock %} {% block dashboard_stat %}

Global Search Search for domains, records and comments directly from PDNS API

{% endblock %} {% block content %}

Hints: The * character can be used in your keyword as a wildcard character and the ? character can be used as a wildcard for a single character.

Domains ({{ domains|length }})

{% for domain in domains %} {% endfor %}
Domain
{{ domain['name'] }}

Records ({{ records|length }})

{% for record in records %} {% endfor %}
Name Type Status TTL Data
{{ record['name'] }} {{ record['type'] }} {{ 'Disabled' if record['disabled'] else 'Active' }} {{ record['ttl'] }} {{ record['content'] }}

Comments ({{ comments|length }})

{% for comment in comments %} {% endfor %}
Comment Record Domain
{{ comment['content'] }} {{ comment['name'] }} {{ comment['zone_id'] }}
{% endblock %} {% block extrascripts %} {% endblock %}