{{ block('title') }}

{{ msg_page_notifications|raw }}

{{ ta('account_logins', 'Account Logins') }}

{{ ta('details_of_any_successful_account_logins_for_the_past_30_days', 'Details of any successful account logins for the past 30 days, the IP address and which country it was from.') }}

{{ ta('total_logins', 'Total Logins') }}:{{ loginData|length }}
{{ ta('different_ips', 'Different IPs') }}:{{ totalDifferentIps }}
{{ ta('different_countries', 'Different Countries') }}:{{ totalDifferentCountries }}
{% if loginData|length == 0 %} {% else %} {% for loginDataItem in loginData %} {% endfor %} {% endif %}
{{ ta('login_date', 'Login Date') }} {{ ta('ip_address', 'IP Address') }} {{ ta('country', 'Country') }}
{{ ta('no_logins_for_the_past_30_days', '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' }}