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