{% extends "base.html" %}
{% block content %}
{% if manage_rules == '1' %}
{% from 'include/input_macros.html' import input, checkbox %}
Rule name
|
Enabled
|
Description
|
{% for r in rules %}
{{r.1}} |
{% set id = 'rule_id-' + r.0|string() %}
{% if r.2 == 1 %}
{{ checkbox(id, checked='checked') }}
{% else %}
{{ checkbox(id) }}
{% endif %}
|
{{r.3}} |
{% endfor %}
{% else %}
{% if servers_all|length == 0 %}
{% include 'include/getstarted.html' %}
{% else %}
Server
|
Actions
|
WAF mode
|
Metrics
|
Manage rules
|
|
{% for s in servers_all %}
{% endfor %}
Time range:
{% for s in servers %}
{% endfor %}
You can read the description and watch a video about WAF
here
{% endif %}
{% endif %}
{% endblock %}