{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}
{% trans "Scope" %}
{% trans "Proxmox Endpoint" %} {{ object.endpoint|linkify|placeholder }}
{% trans "Zone" %} {{ object.get_zone_display }}
{% trans "Proxmox Node" %} {{ object.proxmox_node|linkify|placeholder }}
{% trans "Virtual Machine" %} {{ object.virtual_machine|linkify|placeholder }}
{% trans "Security Group" %} {{ object.security_group|linkify|placeholder }}
{% trans "Rule" %}
{% trans "Position" %} {{ object.pos }}
{% trans "Type" %} {{ object.get_rule_type_display }}
{% trans "Action" %} {{ object.action }}
{% trans "Enabled" %} {{ object.enable|yesno:"Yes,No" }}
{% trans "Macro" %} {{ object.macro|placeholder }}
{% trans "Interface" %} {{ object.iface|placeholder }}
{% trans "Comment" %} {{ object.comment|placeholder }}
{% trans "Match" %}
{% trans "Source" %} {{ object.source|placeholder }}
{% trans "Destination" %} {{ object.dest|placeholder }}
{% trans "Protocol" %} {{ object.proto|placeholder }}
{% trans "Destination Ports" %} {{ object.dport|placeholder }}
{% trans "Source Ports" %} {{ object.sport|placeholder }}
{% trans "Log Level" %} {{ object.get_log_display|placeholder }}
{% trans "ICMP Type" %} {{ object.icmp_type|placeholder }}
{% trans "Sync Metadata" %}
{% trans "Digest" %} {{ object.digest|placeholder }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Raw Configuration" %}
{{ object.raw_config }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}