My data
Like any other site, we collect small bits of information from you 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 %} User agent: {% if user.user_agent %}{{ user.user_agent }}{% else %}Data missing{% endif %}
Rank: {% if user.staff %}You are a staff member.{% elif not user.level <= 0 %}You are a moderator. (Level {{ user.level }}){% else %}You are a regular user.{% endif %}
Your account has existed for {{ age }} days! During that time, we've collected: Account login history: Each time you try and sign in to your account, we grab the IP and User agent from the device used. If you see any login attempts that you don't recognize as your own, you may want to change your password. Nickname and Comment history: No name or comment changes to show. Please contact a staff member, if you wish, your account will be deleted along with all your data attached to it.My content:
Restrictions:
Collected data:
{% if history %}
{% for log_attempt in log_attempt %}
Time
Success
IP
User agent
{% endfor %}
{{ log_attempt.created }}
{{ log_attempt.success }}
{% if log_attempt.success %}{{ log_attempt.addr }}{% else %}REDACTED{% endif %}
{{ log_attempt.user_agent }}
{% else %}
{% for history in history %}
Time changed
New Nickname
New Comment
{% endfor %}
{{ history.created }}
{{ history.new_nickname }}
{% if not history.new_comment %}N/A{% else %}{{ history.new_comment|truncatechars:300 }}{% endif %}
I want this data removed.