{% include "partials/header.html.j2" %}
{%if user and user.name != "" %}

Logs :

{% else %}

Logs

{% endif %}
{{total_logs | default(value="") }} items
{% if user and user.name != '' %} {% endif %} New Signup {% if signup_mode != "open" %} Invite new User {% endif %}
{% for it in logs %} {% if loop.index % 2 == 0%} {% set tr_css="bg-gray-100 dark:bg-gray-800" %} {% else %} {% set tr_css="bg-white dark:bg-gray-900" %} {% endif %} {% if user.isadmin == true %} {% set text_isadmin = '1' %} {% else %} {% set text_isadmin = '0' %} {% endif %} {% set ip = it.content.req.ip | default(value="") %} {% set agent = it.content.req.agent | default(value="") %} {% set line_data = it.line_id~':'~it.content.origin~':'~it.content.context~':'~ip~':'~it.content.role~':'~agent %} {% endfor %}
When / Who
Origin
Context
Request info
Roles
Request agent
{% if user and user.name != '' %}
{{it.content.when}}
line: {{it.line_id}}
{% if it.content.sid != '' %}
SID: {{it.content.sid}}
{% endif %}
{% if it.content.id != '' %} ID: {{it.content.id}} {% endif %} {% if user and user.name != '' %} {{user.name}}{% endif %}
{% else %}
{{it.content.when}}
line: {{it.line_id}}
{% if it.content.sid != '' %}
SID: {{it.content.sid}}
{% endif %} {% if it.content.id != '' %} ID: {{it.content.id}} {% endif %} {% endif %}
{{it.content.origin}} {{it.content.trigger}}
{% set arr_info = it.content.info | split(pat=",") %} {% if arr_info | length > 1 %} {% else %}
{{it.content.info}}
{% endif %}
{{it.content.context}}
{% if ip != "" %} IP: {{ip | replace(from=":", to=" -> ")}} {% endif %} {% if it.content.req.ref and it.content.req.ref != "" %} Ref: {{it.content.req.ref}} {% endif %} {% if it.content.req.auth and it.content.req.auth != "" %} Auth: {{it.content.req.auth}} {% endif %} {% if it.content.req.int and it.content.req.int != "" %} Int: {{it.content.req.int}} {% endif %}
{% set roles = it.content.role | split(pat=",") %} {% for rol in roles %} {% if rol != "" %} {{rol}} {% endif %} {% endfor %} {% if agent != "" %}
{% set arr_agent = agent | split(pat=")") %} {% for agnt in arr_agent %} {{agnt}}) {% endfor %}
{% endif %}
{% include "partials/modal_edit_user.html.j2" %}
{% include "partials/symbols.html.j2" %} {% include "partials/footer.html.j2" %}