{% comment %} {% load url from future %} {% endcomment %} {% load mustacetags %}
{% for table in tables %} {% if forloop.first %}{% else %} {% endif %} {% for chain in table.chains.all %} {% if forloop.first %}{% else %} {% endif %} {% for rule in chain.ordered_rules.all %} {% with rule.target as target %} {% endwith %} {% endfor %} {% with chain.policy as target %} {% endwith %} {% endfor %} {% endfor %}
 

{{ table.name|upper }}

 
 
 

{% if not chain.is_default %} {{ chain.name }} {% else %} DEFAULT {% endif %}

 
 
 
N Active On Call Matching options + Target Options + Stop/Pass

{{ rule.position }}

{% for match in rule.matches.all %} {% for o in match.match_options.all %} {% if o.value %} {% endif %} {% endfor %} {% endfor %}
{{ match.handler_name }}
{{o.name}} : {{o.value}}
{% if rule.is_jump_rule %}

{{ target.handler_name.upper }}

{% else %}

{{ target.handler_name.upper }}

{% endif %}
{% for o in target.target_options.all %} {% endfor %}
{{o.name}} : {% comment %} IMPORTANTE: Tutta questa pagina viene visualizzata con un template mustache. Ill valore di "o.value" potrebbe produrre sequenze {{}} che verrebbero poi interpretate da mustache. Bisogna cambiare i delimitatori di mustache prima e dopo il testo che vogliamo "mantenere". {% endcomment %} {% mtag '=<% %>=' %} {{o.value|safe}} {% mtag2 '={{ }}=' %}
-

{{ target.handler_name.upper }}

{% for o in target.target_options.all %} {% endfor %}
{{o.name}} : {{o.value}}