{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block content %}
{% trans "Name" %} |
{{ object.name }} |
{% trans "Description" %} |
{{ object.description|placeholder }} |
{% trans "Mode" %} |
{{ object.get_mode_display }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
{% trans "Name" %} |
{{ object.ike_policy|linkify }} |
{% trans "Description" %} |
{{ object.ike_policy.description|placeholder }} |
{% trans "Version" %} |
{{ object.ike_policy.get_version_display }} |
{% trans "Mode" %} |
{{ object.ike_policy.get_mode_display }} |
{% trans "Proposals" %} |
{% for proposal in object.ike_policy.proposals.all %}
-
{{ proposal }}
{% endfor %}
|
{% trans "Name" %} |
{{ object.ipsec_policy|linkify }} |
{% trans "Description" %} |
{{ object.ipsec_policy.description|placeholder }} |
{% trans "Proposals" %} |
{% for proposal in object.ipsec_policy.proposals.all %}
-
{{ proposal }}
{% endfor %}
|
{% trans "PFS Group" %} |
{{ object.ipsec_policy.get_pfs_group_display }} |
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}