{% load static %} {% load i18n %}
{% trans 'level EC'%} | {% trans 'agent EC'%} | WAF ID | {% trans 'ip EC'%} | {% trans 'date EC'%} | {% trans 'category EC'%} | {% trans 'message EC'%} | ||
---|---|---|---|---|---|---|---|---|
{{i.level}}
|
{{i.agent}} |
{{i.waf_id}}
|
{% if i.ip|length > 16 %}
{{i.ip|slice:":10"}}...
{% else %}
{{i.ip}}
{% endif %}
{% if i.ip|length > 16 %}
{% endif %}
|
{{i.timestamp}}
|
{{i.category}}
|
{% if i.description|length > 110 %}
{{i.description|slice:":110"}}...
{% else %}
{{i.description}}
{% endif %}
|