|
|
|
{{ rule.position }}
|
|
{% for match in rule.matches.all %}
|
{{ match.handler_name }}
|
|
|
{% for o in match.match_options.all %}
{% if o.value %}
|
|
{{o.name}}
|
{{o.value}}
|
{% endif %}
{% endfor %}
{% endfor %}
|
|
|
{% with rule.target as target %}
{% if rule.is_jump_rule %}
{{ target.handler_name.upper }}
{% else %}
{{ target.handler_name.upper }}
{% endif %}
|
{% for o in target.target_options.all %}
{{o.name}}
|
{{o.value}}
|
{% endfor %}
|
|
{% endwith %}
{% endfor %}
{% with chain.policy as target %}