{% extends "closedverse_main/layout.html" %} {% block main-body %}{% load closedverse_user %}{% load closedverse_tags %}

View info for {{ user.username }}

Account metadata: Mods under level {{ min_lvl_metadata_perms }} can't see this.

Like any other site, we collect small bits of information from accounts for security reasons.

General account information:

IP address: {% if user.addr %}{{ user.addr }}{% else %}Data missing{% endif %}

Signup IP address: {% if user.signup_addr %}{{ user.signup_addr }}{% else %}Data missing{% endif %}

Email: {% if user.email %}{{ user.email }}{% else %}Data missing{% endif %}

Rank: {% if user.staff %}Staff member.{% elif not user.level <= 0 %}Moderator. (Level {{ user.level }}){% else %}Regular user.{% endif %}

{% if accountmatch %}

Account(s) found with the same IP address.

{% for accountmatch in accountmatch %} {% endfor %}
Related account Created
{{ accountmatch.username }} {{ accountmatch.created }}
{% endif %} {% if log_attempt %}

Account login history:

{% for log_attempt in log_attempt %} {{ log_attempt.success }} {% endfor %}
Time Success IP User agent
{{ log_attempt.created }} {{ log_attempt.addr }} {{ log_attempt.user_agent }}
{% else %}

Error: No login history to report, it was likely deleted.

{% endif %} {% if seen_by %}

Account viewed by:

{% for seen_by in seen_by %} {% endfor %}
Time Seen by
{{ seen_by.created }} {{ seen_by.from_user }}
{% else %}

Error: No view history to report, it was likely deleted.

{% endif %}

Do I need to state the obvious? Please don't share this, ever!

{% endblock %}