{% 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 %}
{% csrf_token %}
{% else %} {% endif %} {% endif %} {% endblock %} {% block content %}
{% trans "Definition" %}
{% 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 %}
{% trans "Assignment" %}
{% for title, values, is_qs in assigned_objects %} {% endfor %}
{{ title }}
    {% for object in values %}
  • {% if is_qs %} {{ object|linkify }}
  • {% else %} {{ object }} {% endif %} {% empty %}
  • {% trans "None" %}
  • {% endfor %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% trans "Schedule" %}
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 %}