{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load render_table from django_tables2 %}
{% load i18n %}
{# 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 %}
{% trans "Protocol" %} |
{{ object.get_protocol_display }} |
{% trans "Group ID" %} |
{{ object.group_id }} |
{% trans "Name" %} |
{{ object.name|placeholder }} |
{% trans "Description" %} |
{{ object.description|placeholder }} |
{% trans "Members" %} |
{{ member_count }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
{% trans "Authentication Type" %} |
{{ object.get_auth_type_display|placeholder }} |
{% trans "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 %}