{% extends 'generic/object.html' %} {% block content %}

Group

Name{{ object.name }}
Parent Group{% if parent_group %}{{ parent_group.name }}{% else %}—{% endif %}
Owner{{ object.owner|default:"—" }}
Description{{ object.description|default:"—" }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}

Members

Groups
{% if child_groups %}
{% for group in child_groups %}{{ group.name }}{% endfor %}
{% else %}—{% endif %}
Bundles
{% if bundles %}
    {% for obj in bundles %}
  • {{ obj }}
  • {% endfor %}
{% else %}—{% endif %}
Certificates
{% if certificates %}
    {% for obj in certificates %}
  • {{ obj }}{% if obj.is_ca %} CA certificate{% endif %}
  • {% endfor %}
{% else %}—{% endif %}
Private Keys
{% if private_keys %}
    {% for obj in private_keys %}
  • {{ obj }}
  • {% endfor %}
{% else %}—{% endif %}
CSRs
{% if csrs %}{% else %}—{% endif %}
{% endblock %}