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