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

{% trans "Pod Profile" %}

{% trans "Name" %}{{ object.name }}
{% trans "Alias" %}{{ object.name_alias|placeholder }}
{% trans "Fabric" %} {{ object.aci_fabric }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}

{% trans "Selectors" %}

{% for s in object.selectors.all %} {% empty %} {% endfor %}
{% trans "Name" %}{% trans "Type" %}{% trans "Range" %}{% trans "Pod Policy Group" %}
{{ s.name }} {{ s.get_selector_type_display }} {% if s.selector_type == "all" %}ALL{% else %}{{ s.pod_block_from }}–{{ s.pod_block_to }}{% endif %} {{ s.pod_policy_group }}
{% trans "No selectors configured." %}
{% include 'inc/panels/comments.html' %}
{% endblock %}