{% extends 'generic/object.html' %} {% load i18n %} {% load render_table from django_tables2 %} {% block content %}
{% trans "Security Zone Policies" %}
{% if object.description %} {% endif %} {% if object.source_zone %} {% endif %} {% if object.destination_zone %} {% endif %} {% if object.application %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Index" %} {{ object.index|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Source Zone" %} {{ object.source_zone|linkify|placeholder }}
{% trans "Destination Zone" %} {{ object.destination_zone|linkify|placeholder }}
{% trans "Application" %} {{ object.application }}
{% trans "Policy Actions" %} {% for action in object.policy_actions %} {{ action }} {% endfor %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% trans "Source Addresses" %}
{% render_table source_address_table 'inc/table.html' %}
{% trans "Destination Addresses" %}
{% render_table destination_address_table 'inc/table.html' %}
{% endblock %}