Login History', '', true) }}
{% set lhpagination = pagination(
login_attempts_count,
login_attempts_take,
login_attempts_offset,
'?m=logs'|url_construct({'ao': audit_log_offset}),
false,
'lo'
) %}
{{ lhpagination }}
{% for attempt in user_login_attempts %}
IP
{{ attempt.attempt_ip_decoded }}
{% if attempt.attempt_country != 'XX' %}
{% endif %}
Was Successful?
{{ attempt.was_successful ? 'Yes' : 'No' }}
Attempted
{% if attempt.user_agent|length > 0 %}
User Agent
{{ attempt.user_agent }}
{% endif %}
{% endfor %}
{{ lhpagination }}