< Return to User Page
{% if len(AlternateAccounts) != 0 %}
{%endfor%}
{% endif %}
{% with messages = get_flashed_messages() %}
{% if messages %}
{{userObj.username}} Login History
UserId: {{userObj.id}}
Possible Alt Accounts ( {{len( AlternateAccounts )}} )
{% for altAccount in AlternateAccounts %}{{altAccount.username}} {% if altAccount.flags['hwidmatch'] %} HWID {% endif %} {% if altAccount.flags['sessiontokenmatch'] %} SessionToken {% endif %} {% if altAccount.flags['ipmatch'] %} IPAddress {% endif %} {% if altAccount.flags['useragentmatch'] %} UserAgent {% endif %}
UserId: {{altAccount.id}}
{% for message in messages %}
{% endfor %}
{% endif %}
{% endwith %}
{% if canViewSensitiveInfo %}
{% for loginRecord in LoginHistory %}
{% endfor %}
{% endif %}