{% extends 'generic/_base.html' %} {% load static %} {% block title %}Groups{% endblock %} {% block head %}{{ block.super }}{% endblock %} {% block content %}
{% if perms.netbox_certificates.add_artifactgroup %}Create group{% endif %} {% if perms.netbox_certificates.archive_export_artifactgroup %}Export groups{% endif %}
{% if filter_errors %}
{{ filter_errors }}
{% endif %}

Group hierarchy

Expand groups to browse subgroups and their objects. Open a group to manage membership.

{% csrf_token %} {% if perms.netbox_certificates.change_artifactgroup or perms.netbox_certificates.delete_artifactgroup %}{% include "netbox_certificates/inc/bulk_selection.html" with select_label="Select all groups" %}{% endif %}
    {% include 'netbox_certificates/inc/group_tree_nodes.html' with nodes=group_tree %}
{% if perms.netbox_certificates.change_artifactgroup %}{% endif %} {% if perms.netbox_certificates.delete_artifactgroup %}{% endif %}
{% if not group_tree %}

No groups match your search.

{% endif %}
{% endblock %}