{% extends 'base.html' %} {% load bootstrap inventory_extras %} {% block content %}
| Attribute | Value |
|---|---|
| Name | {{ object.name }} |
| Description | {{ object.description|default:"-"|linebreaksbr }} |
| Inventory | {{ object.inventory|yesno }} |
| Inventory apps | {{ object.inventory_apps|yesno }} |
| Inventory EC2 information | {{ object.inventory_ec2|yesno }} |
| Inventory interval | {{ object.inventory_interval}}s |
| Automatic table construction{{ atc_count|pluralize }} |
{% if atc_count %}
|
| File categor{{ file_category_count|pluralize:"y,ies" }} |
{% if file_categories %}
|
| Flags |
{% for flag in configuration.get_serialized_flags %}
{{ flag }}{% endfor %}
|
| Name | Query count | Tags | {% if perms.osquery.change_configuration %}{% endif %} {% for configuration_pack in configuration_packs %} {% with configuration_pack.pack as pack %} |
|---|---|---|---|
| {{ pack }} | {{ configuration_pack.query_count }} | {% for tag in configuration_pack.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} | {% if perms.osquery.change_configuration %}{% endif %} |
| ID | Business unit | Tags | Created at | Request count | Osquery release | Version | Distributor | {% for enrollment in enrollments %} {% with enrollment.secret as secret %} {% with enrollment.distributor as distributor %} |
|---|---|---|---|---|---|---|---|---|
| {{ enrollment.pk }} | {% if perms.inventory.view_metabusinessunit %} {{ secret.meta_business_unit|default:"-" }} {% else %} {{ secret.meta_business_unit|default:"-" }} {% endif %} | {% for tag in secret.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} | {{ secret.created_at }} | {{ secret.request_count }}{% if secret.quota %} / {{ secret.quota }}{% endif %} | {{ enrollment.osquery_release|default:"-" }} | {{ enrollment.version }} | {% if distributor %} {{ distributor.get_description_for_enrollment }} {% else %} - {% endif %} | {% if secret.is_used_up %} Enrollment used up. {% else %} {% if not distributor %} {% if perms.osquery.change_enrollment %} {% endif %} {% if perms.osquery.delete_enrollment %} {% endif %} {% endif %} {% endif %} |