{% 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.rule_name}} |
{% set id = 'rule_id-' + r.id|string() %}
{% if r.en == 1 %}
{{ checkbox(id, checked='checked') }}
{% else %}
{{ checkbox(id) }}
{% endif %}
|
{{r.desc}} |
{% 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 %}