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

{% trans "VLAN Pool" %}

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

{% trans "VLAN Blocks" %}{% trans "Add" %}

{% for b in object.blocks.all %} {% empty %} {% endfor %}
{% if b.from_vlan == b.to_vlan %}VLAN {{ b.from_vlan }}{% else %}VLAN {{ b.from_vlan }}-{{ b.to_vlan }}{% endif %} {{ b.allocation_mode_override|placeholder }}
{% trans "No blocks defined." %}
{% include 'inc/panels/comments.html' %}
{% endblock %}