{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block title %}{{ object }} - {% trans "Audits" %}{% endblock %} {% block extra_controls %}  {% trans "Sync" %} {% endblock extra_controls %} {% block content %}
{% trans "Audits" %}

{% trans "Read-only checks that explain a symptom before anything is changed. An audit that reads only NetBox renders when opened; one that has to ask Forward runs as a job from its page, so opening a page never spends a query execution." %}

{% for entry in entries %} {% endfor %}
{% trans "Audit" %} {% trans "What it answers" %} {% trans "Source" %} {% trans "Last run" %}
{{ entry.report.title }} {{ entry.report.description }} {% if entry.report.forward_backed %} {% trans "Forward (job)" %} {% else %} {% trans "NetBox (live)" %} {% endif %} {% if not entry.report.forward_backed %} {% trans "on open" %} {% elif entry.job %} #{{ entry.job.pk }} {% badge entry.job.get_status_display bg_color=entry.job.get_status_color %} {% if entry.job.completed %}{{ entry.job.completed|isodatetime }}{% endif %} {% else %} {% trans "never" %} {% endif %}
{% endblock content %}