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

{% trans "Filter" %}

{% 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' %}

{% trans "Entries" %}

{% for e in object.entries.all %} {% empty %} {% endfor %}
NameEtherTypeIP proto
{{ e.name }} {{ e.ether_type }} {{ e.ip_protocol|placeholder }}
{% trans "No entries." %}
{% include 'inc/panels/comments.html' %}
{% endblock %}