{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load helpers %} {% block content %}
| {% trans "Name" %} | {{ object.name }} | |
|---|---|---|
| {% trans "Identifier" %} | {{ object.identifier }} | |
| {% trans "Protocols" %} | {{ object.protocol_list|placeholder }} | |
| Source Ports | {% if object.source_ports %}{{ object.source_port_list|placeholder }} | {% else %}{{ object.source_ports|placeholder }} | {% endif %}
| Destination Ports | {% if object.source_ports %}{{ object.destination_port_list|placeholder }} | {% else %}{{ object.destination_ports|placeholder }} | {% endif %}
| {% trans "Description" %} | {{ object.description|placeholder }} | |
| {% trans "Parent Policies" %} |
{% for item in object.securityzonepolicy_applications.all %}
{{ item|linkify|placeholder }} {% endfor %} |
|
| {% trans "Parent Application Sets" %} |
{% for item in object.applicationset_applications.all %}
{{ item|linkify|placeholder }} {% endfor %} |