{% extends 'generic/object_retrieve.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block content %}
Software Image File
Status {{ object.status|hyperlinked_object_with_color }}
Software Version {{ object.software_version|hyperlinked_object }}
Image File Name {% if object.image_file_name %} {{ object.image_file_name }} {% else %} {% endif %}
Image File Checksum {% if object.image_file_checksum %} {{ object.image_file_checksum }} {% else %} {% endif %}
Hashing Algorithm {{ object.get_hashing_algorithm_display|placeholder }}
Image File Size (bytes) {% if object.image_file_size %} {{ object.image_file_size }} {% else %} {% endif %}
Download URL {% if object.download_url %} {{ object.download_url }} {% else %} {% endif %}
Default Image {{ object.default_image|render_boolean }}
Device Types {% with device_type_count=object.device_types.count %} {% if device_type_count %} {{ device_type_count }} {% else %} {% endif %} {% endwith %}
Devices overridden to use this file {% with device_count=object.devices.count %} {% if device_count %} {{ device_count }} {% else %} {% endif %} {% endwith %}
Inventory items overridden to use this file {% with inventory_item_count=object.inventory_items.count %} {% if inventory_item_count %} {{ inventory_item_count }} {% else %} {% endif %} {% endwith %}
Virtual machines overridden to use this file {% with virtual_machine_count=object.virtual_machines.count %} {% if virtual_machine_count %} {{ virtual_machine_count }} {% else %} {% endif %} {% endwith %}
{% plugin_full_width_page object %}
{% include 'inc/custom_fields/panel.html' with custom_fields=object.get_custom_field_groupings_basic computed_fields=object.get_computed_fields_grouping_basic computed_fields_advanced_ui=False %} {% include 'inc/relationships_panel.html' %} {% include 'extras/inc/tags_panel.html' %} {% plugin_left_page object %}
{% plugin_right_page object %}
{% include 'inc/object_details_advanced_panel.html' %}
{% block advanced_content_right_page %}{% endblock advanced_content_right_page %}
{% block advanced_content_full_width_page %}{% endblock advanced_content_full_width_page %}
{% if object.is_contact_associable_model %}
{% csrf_token %}
Contact Associations
{% render_table associated_contacts_table 'inc/table.html' %}
{% with request.path|add:"?tab=contacts"|urlencode as return_url %} {% endwith %}
{% endif %} {% if object.is_dynamic_group_associable_model and perms.extras.view_dynamicgroup %}
Dynamic group membership is cached for performance reasons, therefore this table may not always be up-to-date.
You can refresh the membership of any specific group by navigating to it from the list below or from the Dynamic Groups list view.
You can also refresh the membership of all groups by running the Refresh Dynamic Group Caches job.
{% csrf_token %}
Dynamic Groups
{% render_table associated_dynamic_groups_table 'inc/table.html' %}
{% endif %} {% if object.is_metadata_associable_model and perms.extras.view_objectmetadata %}
{% csrf_token %}
Object Metadata
{% render_table associated_object_metadata_table 'inc/table.html' %}
{% endif %} {% block extra_tab_content %}{% endblock extra_tab_content %}
{% endblock content %}