{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% load helpers %}
{% load i18n %}
{% block breadcrumbs %}
{{ block.super }}
{{ object.aci_fabric }}
{{ object.aci_tenant }}
{{ object.aci_contract }}
{{ object.aci_contract_subject }}
{% endblock breadcrumbs %}
{% block content %}
| {% trans "ACI Fabric" %} |
{{ object.aci_fabric|linkify }} |
| {% trans "ACI Tenant" %} |
{{ object.aci_tenant|linkify }} |
| {% trans "ACI Contract" %} |
{{ object.aci_contract|linkify }} |
| {% trans "ACI Contract Subject" %} |
{{ object.aci_contract_subject|linkify }} |
| {% trans "ACI Contract Filter" %} |
{{ object.aci_contract_filter|linkify }} |
| {% trans "Action" %} |
{% badge object.get_action_display bg_color=object.get_action_color %} |
| {% trans "Apply Direction" %} |
{% badge object.get_apply_direction_display bg_color=object.get_apply_direction_color %} |
| {% trans "Logging enabled" %} |
{% checkmark object.log_enabled %} |
| {% trans "Policy Compression enabled" %} |
{% checkmark object.policy_compression_enabled %} |
| {% trans "(Deny) Priority" %} |
{% badge object.get_priority_display bg_color=object.get_priority_color %} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock content %}