{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} | {{ object.name }} |
| {% trans "Alias" %} | {{ object.name_alias|placeholder }} |
| {% trans "Tenant" %} |
{{ object.aci_tenant }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| Name | EtherType | IP proto |
{% for e in object.entries.all %}
| {{ e.name }} |
{{ e.ether_type }} |
{{ e.ip_protocol|placeholder }} |
{% empty %}
| {% trans "No entries." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}