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

{% trans "Filter Entry" %}

{% trans "Name" %}{{ object.name }}
{% trans "Alias" %}{{ object.name_alias|placeholder }}
{% trans "Filter" %} {{ object.aci_filter }}
{% trans "EtherType" %}{{ object.ether_type }}
{% trans "IP protocol" %}{{ object.ip_protocol|placeholder }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}

{% trans "L4 / TCP" %}

{% trans "Source port range" %} {{ object.source_port_from|default_if_none:"—" }} – {{ object.source_port_to|default_if_none:"—" }}
{% trans "Destination port range" %} {{ object.destination_port_from|default_if_none:"—" }} – {{ object.destination_port_to|default_if_none:"—" }}
{% trans "TCP rules" %}{{ object.tcp_rules|placeholder }}
{% trans "Stateful" %}{{ object.stateful|yesno }}
{% trans "Match only fragments" %}{{ object.match_only_fragments|yesno }}

{% trans "L2 / ICMP" %}

{% trans "ARP opcode" %}{{ object.arp_opcode|placeholder }}
{% trans "ICMPv4 type" %}{{ object.icmp_v4_type|placeholder }}
{% trans "ICMPv6 type" %}{{ object.icmp_v6_type|placeholder }}
{% include 'inc/panels/comments.html' %}
{% endblock %}