{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load render_table from django_tables2 %}
{# Omit assigned IP addresses from object representation #}
{% block title %}{{ object.get_protocol_display }}: {{ object.group_id }}{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
{{ object.get_protocol_display }}
{% endblock breadcrumbs %}
{% block content %}
Protocol |
{{ object.get_protocol_display }} |
Group ID |
{{ object.group_id }} |
Name |
{{ object.name|placeholder }} |
Description |
{{ object.description|placeholder }} |
Members |
{{ member_count }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
Authentication Type |
{{ object.get_auth_type_display|placeholder }} |
Authentication Key |
{{ object.auth_key|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% plugin_right_page object %}
{% if perms.ipam.add_ipaddress %}
{% endif %}
{% include 'inc/panel_table.html' with table=members_table heading='Members' %}
{% plugin_full_width_page object %}
{% endblock %}