{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} | {{ object.name }} |
| {% trans "Alias" %} | {{ object.name_alias|placeholder }} |
| {% trans "Fabric" %} |
{{ object.aci_fabric }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {% trans "Name" %} | {% trans "Range" %} | {% trans "Policy Group" %} |
{% for sel in object.selectors.all %}
| {{ sel.name }} |
{{ sel.from_module }}/{{ sel.from_port }}-{{ sel.to_module }}/{{ sel.to_port }} |
{% if sel.policy_group %}
{{ sel.policy_group.name }}
{% else %}
{{ ""|placeholder }}
{% endif %}
|
{% empty %}
| {% trans "No selectors defined." %} |
{% endfor %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| {% trans "Switch Profile" %} |
{% for att in object.switch_profile_attachments.all %}
| {{ att.switch_profile.name }} |
{% empty %}
| {% trans "Not attached to any switch profile." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}