{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Firewall configuration" %}{% endblock %} {% block head %} {{block.super}} {% endblock %} {% block context_navbar %} {% endblock %} {% block content %}
{% if not page %}

{% trans "Firewall configuration" %}

{% blocktrans %} The firewall allows you to configure hosts and service that can be accessed from the LAN to the public network. Please select the firewall section to configure in the navigation bar menu {% endblocktrans %}

{% else %}

{{page_title}}

{% csrf_token %} {{ form.management_form }} {% for field in form.0 %} {% endfor %} {% for f in form %} {% for field in f %} {% endfor %} {% endfor %}
{{field.label_tag}}
{{field}}
{% endif %}
{% endblock %}