{% extends "base.html" %} {% load i18n %} {% load static %} {% load bootstrap_icons %} {% block title %}{% trans "NWFilter" %}: {{ name }}{% endblock %} {% block page_heading %}{% trans "NWFilter" %}: {{ name }}{% endblock page_heading %} {% block content %}
{% trans "UUID" %}:
{{ uuid }}
{% trans "Name" %}:
{{ name }}
{% csrf_token %}
{% for ref in refs %} {% endfor %}
# {% trans "Reference" %} {% trans "Action" %}
{{ forloop.counter }} {{ ref }}
{% csrf_token %}
{% include 'add_nwf_rule.html' %} {% for rule in rules %} {% endfor %}
{% trans "Rule" %} {% trans "Action Type" %} {% trans "Direction" %} {% trans "Priority" %} {% trans "Statematch" %} {% trans "Directives" %} {% trans "Action" %}
{{ forloop.counter }} {{ rule.action }} {{ rule.direction }} {{ rule.priority }} {{ rule.statematch }} {{ rule.directives }}
{% csrf_token %}
{% endblock %} {% block script %} {% endblock %}