{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}

{% trans "Interface Profile" %}

{% trans "Name" %}{{ object.name }}
{% trans "Alias" %}{{ object.name_alias|placeholder }}
{% trans "Fabric" %} {{ object.aci_fabric }}
{% trans "Description" %}{{ object.description|placeholder }}

{% trans "Interface selectors" %}

{% for sel in object.selectors.all %} {% empty %} {% endfor %}
{% trans "Name" %}{% trans "Range" %}{% trans "Policy Group" %}
{{ 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 %}
{% trans "No selectors defined." %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}

{% trans "Attached Switch Profiles" %}

{% for att in object.switch_profile_attachments.all %} {% empty %} {% endfor %}
{% trans "Switch Profile" %}
{{ att.switch_profile.name }}
{% trans "Not attached to any switch profile." %}
{% include 'inc/panels/comments.html' %}
{% endblock %}