{% extends 'generic/object.html' %}
{% load helpers %}
{% load static %}
{% load i18n %}
{% load tz %}
{% load humanize %}
{% load plugins %}
{% block extra_controls %}
{% if perms.netbox_facts.run_collector %}
{% if object.ready %}
{% else %}
{% endif %}
{% endif %}
{% endblock %}
{% block content %}
| {% trans "Name" %} |
{{ object.name }} |
| {% trans "Priority" %} |
{{ object.get_priority_display }} |
| {% trans "Description" %} |
{{ object.description|placeholder }} |
| {% trans "Type" %} |
{{ object.get_collector_type_display }} |
| {% trans "Enabled" %} |
{% checkmark object.enabled %} |
| {% trans "Status" %} |
{{ object.get_status_display }} |
| {% trans "Detect Only" %} |
{% checkmark object.detect_only %} |
{% for title, values, is_qs in assigned_objects %}
| {{ title }} |
{% for object in values %}
-
{% if is_qs %}
{{ object|linkify }}
{% else %}
{{ object }}
{% endif %}
{% empty %}
- {% trans "None" %}
{% endfor %}
|
{% endfor %}
{% include 'inc/panels/custom_fields.html' %}
{% plugin_left_page object %}
| Scheduled at |
{% if object.scheduled_at %}{{ object.scheduled_at | localtime }} ({{ object.scheduled_at | localtime | date:'e' }}){% else %}Never{% endif %} |
| Interval |
{% if object.interval %}Every {{ object.interval }} minutes{% else %}None{% endif %} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock content %}