{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% load tz %} {% block extra_controls %} {% if perms.netbox_facts.apply_factsreport and entry_stats.pending > 0 %}
{% csrf_token %} {% for entry in object.entries.all %} {% if entry.status == "pending" %} {% endif %} {% endfor %}
{% endif %} {% endblock %} {% block content %}
{% trans "Report Details" %}
{% if object.error_message %} {% endif %}
{% trans "Collection Plan" %} {{ object.collection_plan|linkify }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Error" %} {{ object.error_message }}
{% trans "Job" %} {{ object.job|default:"—" }}
{% trans "Created" %} {{ object.created }}
{% trans "Completed" %} {{ object.completed_at|default:"—" }}
{% trans "Created By" %} {{ object.created_by|default:"System" }}
{% trans "Summary" %}

{{ object.summary.new|default:"0" }}

{% trans "New" %}

{{ object.summary.changed|default:"0" }}

{% trans "Changed" %}

{{ object.summary.confirmed|default:"0" }}

{% trans "Confirmed" %}

{{ object.summary.stale|default:"0" }}

{% trans "Stale" %}
{% trans "Entry Status" %}

{{ entry_stats.pending }}

{% trans "Pending" %}

{{ entry_stats.applied }}

{% trans "Applied" %}

{{ entry_stats.skipped }}

{% trans "Skipped" %}

{{ entry_stats.failed }}

{% trans "Failed" %}
{% endblock content %}