{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block extra_controls %} {% if perms.vpn.add_tunneltermination %} {% trans "Add Termination" %} {% endif %} {% endblock %} {% block content %}
{% trans "Tunnel" %}
{% trans "Name" %} {{ object.name }}
{% trans "Status" %} {% badge object.get_status_display bg_color=object.get_status_color %}
{% trans "Group" %} {{ object.group|linkify|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Encapsulation" %} {{ object.get_encapsulation_display }}
{% trans "IPSec profile" %} {{ object.ipsec_profile|linkify|placeholder }}
{% trans "Tunnel ID" %} {{ object.tunnel_id|placeholder }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_right_page object %}
{% trans "Terminations" %} {% if perms.vpn.add_tunneltermination %} {% endif %}
{% htmx_table 'vpn:tunneltermination_list' tunnel_id=object.pk %}
{% plugin_full_width_page object %}
{% endblock %}