{% extends 'generic/object.html' %}
{% block content %}
| Name |
{{ object.name }} |
| Owner |
{% if object.owner %}
{{ object.owner }}
{% else %}
—
{% endif %}
|
| Application |
{% if object.application %}
{{ object.application }}
{% else %}
—
{% endif %}
|
| Member of |
{% if parent_groups %}
{% for pg in parent_groups %}
{{ pg.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% else %}
—
{% endif %}
|
| Description |
{{ object.description|default:"—" }} |
{% include 'inc/panels/custom_fields.html' with obj=object %}
{% if member_groups %}
{% endif %}
| Prefix | Description |
{% for prefix in prefixes %}
| {{ prefix }} |
{{ prefix.description|default:"—" }} |
{% empty %}
| No prefixes assigned. |
{% endfor %}
| Address | Description |
{% for ip in ip_addresses %}
| {{ ip }} |
{{ ip.description|default:"—" }} |
{% empty %}
| No IP addresses assigned. |
{% endfor %}
| Range | Description |
{% for range in ip_ranges %}
| {{ range }} |
{{ range.description|default:"—" }} |
{% empty %}
| No IP ranges assigned. |
{% endfor %}
{% endblock %}