{% extends "closedverse_main/layout.html" %} {% block main-body %}{% load closedverse_user %} {% user_sidebar request user user.profile 0 True %}

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 %}

My content:

Your account has existed for {{ age }} days! During that time, we've collected:

  • My posts: {{ posts }}
  • My comments: {{ comments }}
  • My messages: {{ messages }}
  • My yeahs: {{ yeahs }}
  • My notifications: {{ notifications }}

Restrictions:

{% if request.user.active %}
  • Sending images and creating new accounts: {% if user.has_freedom %}Good standing{% else %}Restricted{% endif %}
  • Post limit: {% if request.user.profile.limit_post == 0 %}Good standing{% else %}{{ user.profile.limit_post }}{% endif %}
  • Editing your profile: {% if not user.profile.cannot_edit %}Good standing{% else %}Restricted{% endif %}
  • Creating invites: {% if user.can_invite %}Good standing{% else %}Restricted{% endif %}
{% else %}

You've been fucking banned lmao

{% endif %}

Collected data:

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.

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

Nickname and Comment history:

{% for history in history %} {% endfor %}
Time changed New Nickname New Comment
{{ history.created }} {{ history.new_nickname }} {% if not history.new_comment %}N/A{% else %}{{ history.new_comment|truncatechars:300 }}{% endif %}
{% else %}

No name or comment changes to show.

{% endif %}

I want this data removed.

Please contact a staff member, if you wish, your account will be deleted along with all your data attached to it.

{% endblock %}