{{ block('title') }}

{{ msg_page_notifications|raw }}

Account Logins

Details of any successful account logins for the past 30 days, the IP address and which country it was from.

Total Logins:{{ loginData|length }}
Different IPs:{{ totalDifferentIps }}
Different Countries:{{ totalDifferentCountries }}
{% if loginData|length == 0 %} {% else %} {% for loginDataItem in loginData %} {% endfor %} {% endif %}
Login Date IP Address Country
No logins in the past 30 days.
{{ CoreHelper.formatDate(loginDataItem['date_added'], SITE_CONFIG_DATE_TIME_FORMAT) }} {{ loginDataItem['ip_address'] }} {{ loginDataItem['country_name']|length?loginDataItem['country_name']:'Unknown' }}