2023-12-04 15:44:52 -05:00
|
|
|
{% extends 'generic/object.html' %}
|
|
|
|
{% load helpers %}
|
|
|
|
{% load plugins %}
|
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
<li class="breadcrumb-item"><a href="{% url 'vpn:tunnelgroup_list' %}">{% trans "Tunnel Groups" %}</a></li>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block extra_controls %}
|
|
|
|
{% if perms.vpn.add_tunnel %}
|
2024-01-17 16:25:42 -05:00
|
|
|
<a href="{% url 'vpn:tunnel_add' %}?group={{ object.pk }}" class="btn btn-primary">
|
2023-12-04 15:44:52 -05:00
|
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Tunnel" %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock extra_controls %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col col-md-6">
|
|
|
|
<div class="card">
|
2024-01-17 16:25:42 -05:00
|
|
|
<h5 class="card-header">{% trans "Tunnel Group" %}</h5>
|
|
|
|
<table class="table table-hover attr-table">
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{% trans "Name" %}</th>
|
|
|
|
<td>{{ object.name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{% trans "Description" %}</th>
|
|
|
|
<td>{{ object.description|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-12-04 15:44:52 -05:00
|
|
|
</div>
|
|
|
|
{% include 'inc/panels/tags.html' %}
|
|
|
|
{% plugin_left_page object %}
|
|
|
|
</div>
|
|
|
|
<div class="col col-md-6">
|
|
|
|
{% include 'inc/panels/related_objects.html' %}
|
|
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
|
|
{% plugin_right_page object %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col col-md-12">
|
|
|
|
{% plugin_full_width_page object %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|