{% extends "gemini-protector-gui/layouts/base.html" %} {% block title %} Access Control List {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
Access control list
{%if _is_enable_acl == 1 %} ACL is one {%else%} ACL is off enable it in configurate {%endif%}
{% for acl in _gemini_acl %} {% endfor %}
IP Access Time Desciption Action
{%if acl.is_allowed == 1 %} {%else%} {%endif%} {{ acl.ipaddress }} {{ acl.is_allowed }} {{ acl.created_at | gemini_datetime_format('%d %B %H:%M') }} {{ acl.desciption }}
{% if msg %} {{ msg | safe }} {% endif %}
{% endblock content %} {% block javascripts %} {% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %} {% if category == 'acl_success' %} {% endif %} {% if category == 'acl_fail' %} {% endif %} {% endfor %} {% endwith %} {% endblock javascripts %}