{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} | {{ object.name }} |
| {% trans "Alias" %} | {{ object.name_alias|placeholder }} |
| {% trans "L3Out" %} |
{{ object.aci_l3out }} |
| {% trans "QoS class" %} | {{ object.qos_class|placeholder }} |
| {% trans "Target DSCP" %} | {{ object.target_dscp|placeholder }} |
| {% trans "Preferred group member" %} | {{ object.preferred_group_member|yesno }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
{% for sub in object.subnets.all %}
| {{ sub.prefix }} |
{% empty %}
| {% trans "No subnets defined." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}