{% extends "checker/base.html" %} {% load checker_extras %} {% block title %}LinuxBear DNS: {{ report.domain }} — DNS & Mail Server Health Check{% endblock %} {% block domain_value %}{{ report.domain }}{% endblock %} {% block content %}

🐻 LinuxBear DNS: {{ report.domain }}

✓ {{ report.pass_count }} passed {% if report.warn_count %} ⚠ {{ report.warn_count }} warning{{ report.warn_count|pluralize }} {% endif %} {% if report.error_count %} ✗ {{ report.error_count }} error{{ report.error_count|pluralize }} {% endif %} Processed in {{ report.elapsed }} seconds.
{% regroup report.results by category as category_list %} {% for cat in category_list %} {% for result in cat.list %} {% if forloop.first %} {% endif %} {% endfor %} {% endfor %}
Category Status Test name Information [send feedback]
{{ cat.grouper }} {% if result.status == 'pass' %}Pass {% elif result.status == 'warn' %}Warn {% elif result.status == 'error' %}Error {% else %}Info{% endif %} {{ result.test_name }} {{ result.information|safe }}

Processed in {{ report.elapsed }} seconds.

{% endblock %}