{% extends "iptables/__base.html" %} {% load i18n %} {% block headtitle %} {% if can_edit %}{% trans 'Edit Chain · Silent Dune' noop %}{% else %} {% trans 'View Chain · Silent Dune' noop %} {% endif %} {% endblock %} {% block page-content %}
{% csrf_token %}
Chain Information
{% if can_edit %}
{% endif %}
{% if edit %}
Rule Status Chart
Enabled: Accept Reject Drop Log
Disabled: Accept Reject Drop Log
{% endif %} {% if can_edit %} {% endif %} {% for chain in chains %}
{{ chain.name }}
{% for ring in chain.rings %}
{{ ring.name }}
{% for rule in ring.rules %} {% endfor %}
Proto iface oface Source Port Dest Port Jump Desc
{% if can_edit %} {% endif %} {{ rule.ip_protocol_name }} {{ rule.ifacein_name }} {{ rule.ifaceout_name }} {{ rule.source_address }} * {{ rule.dest_address }} * {{ rule.jump_target.0}} {{ rule.desc }} {% if can_edit %}
{% endif %}
{% if can_edit %} {% endif %}
{% endfor %}
{% endfor %}
{% endblock page-content %} {% block script %} {% endblock script %}