{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% load plugins %} {% block content %}
| {% trans "Name" %} | {{ object.name }} |
|---|---|
| {% trans "Identifier" %} | {{ object.identifier }} |
| {% trans "Index" %} | {{ object.index|placeholder }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {% trans "Source Zone" %} | {% for zone in object.source_zone.all %} {{ zone|linkify }}{% if not forloop.last %}, {% endif %} {% empty %} {{ ''|placeholder }} {% endfor %} |
| {% trans "Destination Zone" %} | {% for zone in object.destination_zone.all %} {{ zone|linkify }}{% if not forloop.last %}, {% endif %} {% empty %} {{ ''|placeholder }} {% endfor %} |
| {% trans "Policy Actions" %} | {% for action in object.policy_actions %} {{ action }} {% endfor %} |