{% extends 'generic/object.html' %} {% load i18n %} {% load render_table from django_tables2 %} {% block content %}
{% 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 "Policy Actions" %} | {% for action in object.policy_actions %} {{ action }} {% endfor %} |